neopanda
New member
- Joined
- Nov 8, 2008
- Messages
- 1
- Programming Experience
- Beginner
hi all,
i have a problem in "selecting all text in textbox an copy it" by pressing a button that i've created. could anyone help me how to do it?
i try to selected the text with this syntax :
i got no respond in my form.
i have a problem in "selecting all text in textbox an copy it" by pressing a button that i've created. could anyone help me how to do it?
i try to selected the text with this syntax :
VB.NET:
txtTicket.Select(0, 6)
txtTicket.SelectionStart = 0
txtTicket.SelectionLength = txtTicket.Text.Length
txtTicket.SelectAll()
txtTicket.Text.Copy(6)
i got no respond in my form.