Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
textbox_mouseclick
- Page 1
Re: textbox ctrl+c and ctrl+v how to implement
Programming
Software Development
15 Years Ago
by farooqaaa
Textbox supports Ctrl+C and Ctrl+V by default. Do you mean to copy the text of the textbox without selecting them?
Re: TextBox.Text changed with js don't keep value on postback
Programming
Web Development
15 Years Ago
by ja3_bhende
Textbox is a server control,it loses value changed from javascript on postback.if u want to save the value,u can use hidden control which you can access in both client as well as server side.Please mark as answer if this works.
Re: Pop Up On screen keyboard when you click/touch textbox
Programming
Software Development
10 Years Ago
by jez9
@Reverend Jim, wow thank you, it works now on my system, i tried to use it in textbox.MouseClick and it works. :) , thank you again. I tried to do a keyboard in a form but having trouble in sendkeys and focus on textboxes , that's why i try osk.exe that you mention to me. Thank you. I got a short code now :D @Minimalist, thanks for helping, it …
TextBox - OnBlur (clear textBox onClick; show text onBlur)
Programming
Web Development
15 Years Ago
by Ana D.
Hi, In my page I have the following code: [CODE=ASP.NET]<asp:TextBox ID="SearchCriteriaTextBox" runat="server" Text="Enter Search Criteria" Width="150px" ForeColor="GrayText" OnClick="this.value = ''; this.style.color = 'black'" OnBlur="javascript:changeText('<%=…
textbox data not refreshing
Programming
Software Development
14 Years Ago
by paps3535
I have two textboxes...on the textchanged event of one textbox, readonly property of other textbox gets defined...e.g. first textbox is retrieving data as add,update,delete...when the first textbox text is changed to update then & then only second textbox readonly property is set to false...Now the problem,I am facing is....whenevr first …
textbox suggest
Programming
Web Development
16 Years Ago
by ansari.wajid
Hi friends First of all I would like to thank people here on Daniweb for helping me whenever I need help. I am hopefull that now also all of you will help me. Today I got a special scenario which I am applying in my application. I have 2 text boxes to enter zipcode, In first text box when ever user enters some data and presses tab and on …
Textbox disappers due to post back and showed Error:Object reference not set to an in
Programming
Web Development
16 Years Ago
by pen2satya
I have a Gridview having 3 columns in which i took checkbox,label and label as item templates for columns select,code,name respectively. ecode column is not editable.Button edit and update are present outside of gridview. i can edit multiple rows like this... when i select checkbox in 1st row of gridview then in ename column of that row i added …
Textbox.text empty in codebehind after assigning .value from javascript
Programming
Web Development
15 Years Ago
by thetodaisies
Hi, I have an aspx textbox control in my webpage its value is being assigned from javascript. Now once the value is assigned from javascript it returns empty string when tried Textbox.text from c# codebehind on submit. here is the definition of the textbox <asp:TextBox ID="TxtTags" CssClass="TextBoxStyle" runat="…
Re: TextBox.Text after Postback (dynamic textboxes)
Programming
Web Development
15 Years Ago
by aliensXY
I generate textboxes in Page_Init method. Some extract from code: [CODE] // creation of one textbox TextBox textBox = new TextBox(); textBox.ID = d.Key.ToString(); textBox.TextMode = TextBoxMode.MultiLine; textBox.Height = Unit.Pixel(107); textBox.Width = Unit.Pixel(263);[/CODE] Then I save them in the session object: [CODE]Session.Add("1&…
TextBox and Button Applet Comparison HELP!!!!!
Programming
Software Development
14 Years Ago
by sydneytot
Can you help me in this program java applet. this is a program that the user will input one letter in all the textbox.When you typed all the letters correctly you will click the button and will prompt accepted else invalid. The letters in every textbox is fixed: A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,V,,W,X,Y this is my codes: [code] package …
TextBox(in Multimode) does not shows last edited values on button click??
Programming
Web Development
14 Years Ago
by genext.brite
Hello everyone, [B]I have a TextBox and a Button on my webpage. On Page Load I'm displaying the contents of a TextFile(with multiple lines)on the TextBox.Then I'm editing the TextBox.Then On ButtonClick ,I debug it and check the TextBox value.The value shown is:The value last edited on textbox appended with the intial Values of the TextBox. Why …
TextBox Dynamics
Programming
Software Development
12 Years Ago
by stefano.a.feltre
i make a program that create a number of texboxes equal of number that i insert in the first textbox,after i received the others number of the other texboxes in input and i make the sum of these numbers The problem is that i insert in the first textbox "5" and in the other 5 texboxes i insert "9" "8" "7" &…
Re: Textbox and button visible true or false problem
Programming
Software Development
17 Years Ago
by hollystyles
I'm still not entirely sure what you want to do. I take it english is not your first language? Are india tour and world tour catagories ? So I choose a category, then I see a datagrid of tour products, one of which is a hotel booking ? So hotel booking is in the datagrid? A textbox and button should appear in a datagrid column oposite only the …
Textbox properties
Programming
Software Development
17 Years Ago
by sonia sardana
[B][COLOR="Red"]1)[/COLOR][/B] Single Line Textbox can have a horizontal scrollbar-i READ FROM D BUK. But no scrollbar is going to attached with single line textbox. Can a single line textBOX HAVE hor. scrollbar. [B][COLOR="Red"]2)Selstart and SelLength[/COLOR][/B] Private Sub Command1_Click() Text1.SelText = UCase$(…
Re: textbox suggest
Programming
Web Development
16 Years Ago
by tuse
Umm... I think you should maintain a database of 'suggests' for showing them in the 2nd TextBox As @bhi said, enable the autopostback property for the 1st textbox and do this- [code=asp.net] "Select * from <table> where <field> like" & me.textbox1.text & "%" [/code] This sql is for the 'suggests'. If you …
Re: TextBox - OnBlur (clear textBox onClick; show text onBlur)
Programming
Web Development
15 Years Ago
by Ramesh S
If see ViewSource of the HTML for your page, <%=SearchCriteriaTextBox.ClientID %> is not rendered properly. You can change your code as below [CODE] <asp:TextBox ID="SearchCriteriaTextBox" runat="server" Text="Enter Search Criteria" Width="150px" ForeColor="GrayText" OnClick="…
Re: TextBox.Text after Postback (dynamic textboxes)
Programming
Web Development
15 Years Ago
by bombuchu
ok here's some code i tweaked from this website [URL="http://www.aspnettutorials.com/tutorials/controls/control-dym-aspnet2-vb.aspx"]http://www.aspnettutorials.com/tutorials/controls/control-dym-aspnet2-vb.aspx[/URL] it deals with a dynamic button but i've changed it to a textbox. [CODE] Inherits System.Web.UI.Page Public TextBox As …
textbox words comes in textbox
Programming
Software Development
15 Years Ago
by pritesh2010
hello everyone i'm creating billing application in that i got the two problem while i'm use. 1)when i came in purchase form i can retrive all the supplier's name in the one genral list box list. but i want when i came in textbox for typing the name of supplier name i want to show the index of the list should be move when i preesed the perticuler …
textbox with text compatible rendering similar to label and button in windows forms
Programming
Software Development
14 Years Ago
by krishna@2010
hi frnds, Please help me with query,i am using label,textbox and a button in my windows form. my label text is 'మొదటి పేరు' my button text is 'సేవ్' now when i run my project i need to type the same text into my textbox as it looks in label....but when i type, my textbox text is different 2 label text. wat i abserved is …
Re: TextBox - OnBlur (clear textBox onClick; show text onBlur)
Programming
Web Development
14 Years Ago
by yamanshr
Simplifing the code: [CODE] <asp:TextBox ID="SearchCriteriaTextBox" runat="server" Text="Enter Search Criteria" Width="150px" ForeColor="GrayText" OnClick="this.value = ''; this.style.color = 'black'" OnBlur="this.value='Enter Search Criteria';this.style.color='grey'" /> …
Re: textbox data not refreshing
Programming
Software Development
13 Years Ago
by AirGear
I don't really get what you meant, will be better if you can post the code like what prnvnkmr194 said. But I would suggest that you either haven't changed the "readonly" property of the 2nd textbox or haven't saved last progress. There is a chance that you got logical error as well.
Textbox values from database php ajax
Programming
Web Development
12 Years Ago
by ngonix
Hello, I have search box that has auto complete from database(works fine). But I need when the search box value auto-populates in textbox(address_name), the other textbox values come from mysql and automatically populate the other textboxes related to the textbox(address_name) i.e textbox(work_no) and textbox(work_address) using a button or …
TextBox with Validating Event (TextBox_Validating) Problems
Programming
Software Development
11 Years Ago
by airhalynn101
I have created a currency textbox formatting with the _Validating event. I use this formatting for six textboxes that have to have their values added. So what happens is after I typed in an amount and left the textbox, the amount (the text I inputted) becomes formatted, and the 'Total' (where the sum is displayed) is automatically updated (I did …
Textbox data insert in Gridview
Programming
Software Development
11 Years Ago
by Rake$h
hi friend here soved code for textbox data display in Gridview <form id="form1" runat="server"> <asp:TextBox ID="txtAdd1" runat="server"></asp:TextBox> <asp:TextBox ID="txtAdd2" runat="server"></asp:TextBox> <asp:Button ID="…
Re: textbox words comes in textbox
Programming
Software Development
15 Years Ago
by andrewll2
Hi there. Here is a possible solution for your first problem. When the text changes in the textBox1:it gets the most similar item to the one in the textbox from the listbox and puts that item to the 1st row(in the listbox), the 1 which was in the first row changes place with the one which got to the 1st row. Required elements: 1 listbox (…
Re: Textbox properties
Programming
Software Development
17 Years Ago
by choudhuryshouvi
[QUOTE][B][COLOR="Red"]1)[/COLOR][/B] Single Line Textbox can have a horizontal scrollbar-i READ FROM D BUK. But no scrollbar is going to attached with single line textbox. Can a single line textBOX HAVE hor. scrollbar.[/QUOTE] In normal condition -->[B]NO[/B]. but can be implemented using API functions. [QUOTE] [B][COLOR="Red…
Re: TextBox.Text after Postback (dynamic textboxes)
Programming
Web Development
15 Years Ago
by bombuchu
here's the aspx side i used the defualt template and just added somethings for me to to see the needed information , i hope this helps a bit only thing i can't put more than one textbox atm. [CODE]<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent"> </asp:Content> <asp:…
Textbox value in multiplication of 2
Programming
Software Development
14 Years Ago
by Deven Mehta
Hi, I want to make enter Textbox value in multiplication of 2,the value in the textbox is retrieved from database. This is my code: [code] int a = int.Parse(textBox3.Text); int b = int.Parse(textBox3.Text); int c = a + b; textBox3.Text = c.ToString(); [/code] I had retrieved value from the database in Textbox as follow: [code] SqlDataAdapter da …
textbox data not available in post variable
Programming
Web Development
14 Years Ago
by kiranking
I am trying to code a form that has multiple textbox without refershing page using ajax, then after each textbox threre will be link called add which POST call the other php called addnew.php. In addnew.php data will we added to database(postgres). But I am geting problem while getting the post variable itself.For testing I added the alert in …
textbox and text using javascript
Digital Media
UI / UX Design
14 Years Ago
by xuexue
hi guys, i am generating a certain element using javascript inside a table.. now, my problem is that, inside a cell, i will input a text and a textbox.. if the sequence is like this, text textbox both displays in the screen, if it's like this, textbox text only the text displays.. could you help me? [CODE] var table = document.…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC