How to get text from Clipboard
Posted on October 30, 2011
1 2 3 4 5 6 | 'System & API - How to get text from Clipboard ' For a regular TextBox control Text1.SelText = Clipboard.GetText() ' You can omit vbCFText. ' For a RichTextBox control RichTextBox1.SelRTF = Clipboard.GetText(vbCFRTF) |