Sponsored White Papers, Webcasts, and Downloads
Additional Resources
- Special Textbox (rar)
- Special Textbox control gives you the power to determine what the user can and what the user cannot enter in the Special Textbox control, since Special Textbox control inherits directly from the regular Textbox control that came with microsoft.net framework, you will have the same functionalities that you had in...
- Tags: Control
- Software downloads 2006-11-10
- save data to memory
- hi... i have a aspx page that will allow user to scan barcode into the textbox along with skid number and quantity i have textbox for quantity where user will type the quantity and i have textbox where user will type the skid so lets say at skid textbox user...
- Tags: far_al@..., programming, skid, textBox
- Discussion threads 2004-12-10
- Binding to a textbox
- Help for a newbie. I have a C# with an Oracle backend. The app seems to be connecting with the db but I can't get anything to show in a textbox and the datagrid doesn't show at all in runtime? Any help would be great. Here...
- Tags: bdw1969@..., oConn
- Discussion threads 2006-12-04
- writing program in wdk
- Hi iam new to Documentum i have wrote helloworld component.my doubt is iam using and in java classpublic void changeTextText txtNamepublic void onPress(Button btClick, ArgumentList args)iam using the above methodsas these are userdefined methods how we know that only these parameters have to be passed as inputs.is anywhere...
- Tags: budida.raveendra@...
- Discussion threads 2007-08-21
- Access and VBA
- I am picking up from where another person has left off in creating a GUI in Access using VBA. I have no background in this so it's taking a while. I have created a "Browse" button that allows a user to pick a directory where they want to save a...
- Tags: Scripting languages, cloh@..., textbox, VBA, Microsoft Access
- Discussion threads 2007-07-11
- Access 2007 - Checkbox Control
- Novice Here. I am looking at providing a few check-boxes on a form. When one is checked a textbox control would change its control source. For example, if a user selects the first check-box entitled First Name the control source for a textbox would become [table].[fname], if they select the...
- Tags: Microsoft Access, joelsb123@..., control source
- Discussion threads 2007-06-18
- How on earth do I print the contents of a multi-line textbox in VBE 2005?
- I've tried messing with everything I can. I just can't work out how to make the contents of a multi-line textbox to print! Please help me!
- Tags: dawmail333@...
- Discussion threads 2007-06-22
- Excel VBA search facility
- Hi guysI'm using VBA in excel to find a particular product. At the minute I have it working by searching text string in a textbox control and the macor finds the product after you hit a "search" button.Ideally I'd like to be able to further automate this so that that...
- Tags: stefan.oldroyd@..., textBox, carriage return, contol, software, excel, vba, programming, search, event, enter, Microsoft Excel
- Discussion threads 2007-02-09
- VB.NET Compact Framework ProblemTesting if a textbox is visible
- CF .NET 2.0 on Mobile 5.0 If I set a textbox visible it becomes visible on the screen but when testing the value it is always false. I don't have the problem on Pocket PC (w/ same code)textbox1.Visible = TrueIf textbox1.Visible = True Then ...do somethingend ifThanks, Josh
- Tags: Pocket PC, jbrown@..., Microsoft Visual Basic.Net
- Discussion threads 2007-04-27
- PowerWeb TextBox for ASP.NET (exe)
- PowerWEB TextBox for ASP.NET gives you an easy way to add dynamic WYSIWYG editing capabilities to your Web App without writing any code. Just drag-and-drop the TextBox control onto a Web form and use the intuitive Property Builder to configure the control to your exact needs. For the utmost in...
- Tags: Web, Microsoft ASP.NET, Dart Communications, .Net, Middleware, Channel Management, Software Development, Software/Web Development, Enterprise Software, Software, Marketing
- Software downloads 2008-02-14
- Visual Basic 6.0
- i want to access data from microsoft Access,which i enter date in textbox,just particular date wise must be display when i click to button.how aceess database from microsoft access of particular date wise,which i have enterd in textbox,when click button then desplay it.
- Tags: Microsoft development tools, Programming languages, tridev_2005@..., Microsoft Visual Basic 6.0, Microsoft Visual Basic
- Discussion threads 2007-10-11
- Problem With Latebinding - VB 2005 Mobile Device
- I am using a collection of textbox objects that are created during the form load event. These objects are later updated with data in other events. This works fine on a PC but when I try to deploy this code to a mobile device I get an error...
- Tags: jwassoc@..., mobile device, Microsoft Visual Basic
- Discussion threads 2007-09-28
- Somebody pls help!!!!!! MS Access/VB6.0 query problem
- Can someone help me pls. I'm developing an application for my small travels and tours agency that will handle the personal information and reservation requests of customers. I want a situation where when I click the view reservations button from within the customer page, the "Reservation form" will load and...
- Tags: Programming languages, Scripting languages, Databases, Microsoft Corp., deyshele@..., reservation, Dim strSQL, cusIdNum, customer id, CusIDval
- Discussion threads 2007-09-16
- Naming Objects in VBA
- I have XP and Office 2003. In powerpoint I have added a textbox object to numerous slides which I wish to access in VBA (ex. msgbox Slide5.Team1.Value displays the content of a textbox called "Team1" on a slide named "slide5"). The Team1 textbox exists on all slides. How can I...
- Tags: Dim intI, Dim strSlide, Family Feud, Microsoft Visual Basic, programming, rwint@..., slide, Slide5, Team1, textBox, VBA
- Q&A 2005-06-30
- Problem positioning controls within a panel
- I don't know if this is a bug or if I am doing something wrong, but hopefully somebody could help me. I have a panel with autoscroll=true, and I am trying to position controls within it, however they don't position correctly. According to MS's documentation Panel.Left "Gets or...
- Tags: positioning, programming, strcmp@..., textBox, X1, Y1
- Q&A 2005-01-24
- Custom web controls
- Hai All, I have created Custom web controls inheriting them from existing .Net controls, I used a webcontrol library and in that i used webcustomcontrol.cs file for each individual control. There is no problem in creating web custom...
- Tags: Custom Web
- Q&A 2006-05-24
- Problem with MS Access 97 SQL query.
- Can someone help me pls. I'm developing an application for my small travels and tours agency that will handle the personal information and reservation requests of customers. I want a situation where when I click the view reservations button from within the customer page, the "Reservation form" will load and...
- Tags: Databases, Microsoft Corp., deyshele@..., Microsoft Access, reservation, customer id, cusIdNum
- Discussion threads 2007-09-12
- example of Inserting and Retrieving data from xml file
- This is an example of Inserting and Retrieving data from xml file. http://www.hanusoftware.comprivate void Page_Load(object sender, System.EventArgs e) { // Put user code to initialize the page here if(!IsPostBack) { BindGrid; } } private void BindGrid { ds = new DataSet; try { ds.ReadXml(@"c:inetpubwwwrootWebApplication10XMLFile1.xml"); DataGrid1.DataSource = ds; DataGrid1.DataBind; } catchException ex { throw ex; } } private void Button1_Click(object sender, System.EventArgs e) { ds = new DataSet; try { ds.ReadXml(@"c:inetpubwwwrootWebApplication10XMLFile1.xml"); DataRow row = ds.Tables[0].NewRow; row["name"]=txtName.Text; row["fathersname"]=txtFName.Text; row["address"]=txtAddress.Text; ds.Tables[0].Rows.Addrow; ds.WriteXml(@"c:inetpubwwwrootWebApplication10XMLFile1.xml"); txtAddress.Text=""; txtFName.Text=""; txtName.Text =""; BindGrid; } catchException ex { throw ex; }[url=http://www.hanusoftware.com]Software Development...
- Tags: hanuseo@..., BindGrid, c:inetpubwwwrootWebApplication10XMLFile1.xml, XML file, XML
- Discussion threads 2007-09-26
- update,delete,cancel buttons in datagrid using vb.net....
- can anybody plz tell m -whats the error in the code for update button in datagrid-where table name is "table1"its has fields "ID","Name","Age","Sex","Area"..in the code its giving error has::----------------------c:inetpubwwwrootsampleprj1WebForm1.aspx.vb(151): 'Textbox' is ambiguous, imported from the namespaces or types 'System.Web.UI.WebControls, System.Windows.Forms'.------------------------------The code is as followsProtected Sub datagrid1_UpdateCommand(ByVal source As Object, ByVal...
- Tags: preethams_venkatesh4@..., TextBox, CType
- Discussion threads 2007-06-06
- << Previous
- page 1 of 1
- Next >>