No announcements
Found 998955 threads
-
2 Votes
Dynamically Adding Removing ASP.NET TextBox Control
Hi I tried using your sample code and it adds another textbox but when click to another textbox it clears the text of the first textbox it added, how can ...Answered | 5 Replies | 6167 Views | Created by anwar.mustafa - Thursday, March 14, 2013 7:43 PM | Last reply by HoneyMix - Saturday, September 27, 2014 8:15 AM -
0 Votes
reading a textfile and putting it into multiple textboxes
Hi Dave, If we can make an assumption that the TextBoxes are set in order (much like I made the assumption in the other post, writing to the file from the ...Answered | 3 Replies | 722 Views | Created by daveask1971 - Sunday, October 11, 2015 3:45 PM | Last reply by BonnieB - Monday, October 12, 2015 5:33 PM -
0 Votes
dynamically added textbox
You can use FrameworkElement.FindName to find the TextBox and then you can get the Text as shown if following code TextBox txt = ...Answered | 2 Replies | 874 Views | Created by jkpanigrahy - Wednesday, May 15, 2013 12:42 PM | Last reply by Khanna Gaurav - Wednesday, May 15, 2013 1:26 PM -
0 Votes
Add multiple textboxes in external exel dynamically
You can use Excel Object Model to add textboxes.Answered | 2 Replies | 835 Views | Created by kkpatel - Tuesday, January 21, 2014 7:16 AM | Last reply by George Hua - Wednesday, January 22, 2014 9:42 AM -
0 Votes
multiple textboxes
You could for example write the values in the TextBoxes to a simple text file.Answered | 1 Replies | 385 Views | Created by ALIBAADSHAH - Wednesday, August 26, 2015 10:42 AM | Last reply by Magnus (MM8) - Wednesday, August 26, 2015 1:32 PM -
0 Votes
textbox change event dynamically
you can use Controls collection private void add() { TextBox txt1 = this.Controls["txt1"] as TextBox; TextBox txt2 = ...Answered | 2 Replies | 932 Views | Created by hot n thought - Wednesday, July 9, 2014 7:03 PM | Last reply by Muthukrishnan Ramasamy - Friday, July 11, 2014 5:40 AM -
8 Votes
Dynamic Creation of Textboxes
It should not be necessary to use dynamic code execution for your task.Answered | 19 Replies | 3534 Views | Created by 8Terrapin4 - Monday, March 7, 2011 1:57 PM | Last reply by Paul P Clement IV - Monday, March 14, 2011 1:12 PM -
4 Votes
Multiple TextBox
You can use arrays to store the textboxes Simple example: nRow = 8 nCol = 5 tbWidth = 100 tbHeight = 25 space = ...Answered | 3 Replies | 553 Views | Created by Carmenello - Tuesday, September 1, 2015 9:45 AM | Last reply by litdev - Friday, September 4, 2015 7:00 PM -
0 Votes
Writing Multiple TextBoxes To A File
I couldn't remember the original thread name for this one, so I called it "Writing Multiple Textboxes To A File" when I split it:Answered | 9 Replies | 869 Views | Created by daveask1971 - Sunday, October 11, 2015 3:30 PM | Last reply by BonnieB - Sunday, October 11, 2015 7:51 PM -
0 Votes
asp.net webforms bound textbox
You cannot just bind textbox, there is no DataSourceID property on textbox.Answered | 2 Replies | 1021 Views | Created by kingelk - Monday, February 6, 2017 8:40 PM | Last reply by Neda Zhang - Tuesday, February 7, 2017 7:50 AM -
0 Votes
dynamically add a Tooltip in TextBox
I was having problem in Finding the TextBox control under DataGrid.Answered | 4 Replies | 5319 Views | Created by Chandra Prakash Andani - Tuesday, October 19, 2010 4:08 PM | Last reply by Chandra Prakash Andani - Wednesday, October 20, 2010 9:44 AM -
0 Votes
Change Textbox size dynamically
It is possible to dynamically increase the size of the textbox, but there is possibility of it overlapping some other controls on the form.Answered | 2 Replies | 3820 Views | Created by Asder43 - Wednesday, February 4, 2009 11:16 AM | Last reply by _asgar - Thursday, February 5, 2009 5:02 AM -
0 Votes
Dynamic color filling in TextBox Wdith
Hi Revathi_M, If I understand correctly, you want the colored area of the textbox to be based on the field value in the cell.Answered | 3 Replies | 4007 Views | Created by Revathi_M - Monday, June 4, 2012 9:51 AM | Last reply by Mike Yin - Friday, June 8, 2012 12:00 PM -
1 Votes
Textchanged Event for dynamically created textboxes
The following code creates 10 labels and 10 textboxes on button click event and i) displays textbox text in the ...Answered | 6 Replies | 10855 Views | Created by wuastc - Sunday, July 8, 2012 9:15 PM | Last reply by wuastc - Monday, July 9, 2012 7:30 PM -
4 Votes
Multiple textboxes in messagebox
Now add a textbox to that form.Answered | 8 Replies | 5606 Views | Created by vishvishal2000 - Tuesday, December 1, 2009 4:45 AM | Last reply by bdbodger - Wednesday, December 2, 2009 2:01 AM -
1 Votes
Loop with dynamic textbox-id
For instance: For I As Integer = 1 To 12 strTextboxName = "TextBox" & I.ToString Dim o As Object = ...Answered | 9 Replies | 4327 Views | Created by TomAustria - Tuesday, December 22, 2009 1:54 PM | Last reply by Acamar - Thursday, December 24, 2009 8:09 PM -
0 Votes
TextBox print - multiple pages.
Use the TextBox Printer in this thread:Answered | 1 Replies | 1079 Views | Created by Martin1993-03 - Friday, November 22, 2013 6:48 PM | Last reply by JohnWein - Saturday, November 23, 2013 6:34 AM -
0 Votes
ASP.NET TEXTBOX ENABLE VIEWSTATE TO FALSE
Please refer to the VinayC's answer in the following thread: ...Answered | 1 Replies | 652 Views | Created by Friend511 - Friday, May 23, 2014 3:43 PM | Last reply by Magnus (MM8) - Saturday, May 24, 2014 10:49 AM -
3 Votes
Multiple textbox properties
StringCollection can be used in My Settings to save the text of multiple textboxes, is there a way to save properties such as Visible = True/False for ...Answered | 8 Replies | 1325 Views | Created by grandpaagain - Sunday, November 24, 2013 1:13 AM | Last reply by grandpaagain - Thursday, November 28, 2013 5:13 PM -
0 Votes
How to increase the textBox with dynamically?
1st define the MinimumSize for the textbox:Answered | 5 Replies | 3894 Views | Created by venakt - Wednesday, November 19, 2008 11:16 AM | Last reply by Zhi-Xin Ye - Tuesday, November 25, 2008 2:42 AM - Items 1 to 20 of 998955 Next ›
No announcements