ADO DOT NET
Centurion
- Joined
- Dec 20, 2006
- Messages
- 160
Hi,
When I want to paste a text into a text box I use this code:
It has a problem: it removes the previous clipboard contents, is there a way to paste a specific text into text box without working with clipboard?
Thanks.
When I want to paste a text into a text box I use this code:
Visual Basic:
Clipboard.SetText("My Text")
SubjectTextBox.Paste()
Thanks.