vb, visual basic, vb6, how to read clipboard, how to write clipboard, add value to clipboard, get value from clipboard how to use clipboard
(Website Helper) how to use clipboard Number of Visitors: Site Map

vb: how to read and write clipboard?



Website Design
Website Promotion
Graphic Design
Programming
Free Software
Computer Tips
Discount Stores
This site provides users with the information about vb, visual basic, vb6, how to read clipboard, how to write clipboard, add value to clipboard, get value from clipboard, and more.

If you think that this site is helpful, please recommend your friends to visit our site.



vb: how to read value from clipboard?

'Select Text in txtBox & copy from clipboard
   txtBox.SelText = Clipboard.GetText 

'Or replace entire text
   txtBox.Text = Clipboard.GetText
vb: how to add value to clipboard?

'First clear the clipboard
  Clipboard.Clear

'Select Text in txtBox & copy to clipboard
  Clipboard.SetText txtBox.Text, vbCFText
(Website Helper) how to use clipboard (c) EduSoftMax - www.edusoftmax.com