Hey,
How can I programatically paste text into a text/rich text box without using SendKeys? I think I saw this somewhere using an API, but I forget it's name.
Thanks,
Printable View
Hey,
How can I programatically paste text into a text/rich text box without using SendKeys? I think I saw this somewhere using an API, but I forget it's name.
Thanks,
No api needed.
Code:Text1.text = ClipBoard.GetText()
text1.seltext=clipboard.gettext
Otherwise, the rest of the text will be deleted.