Utilising Windows' clipboard

DominicB

Active member
Joined
May 2, 2008
Messages
30
Programming Experience
Beginner
Hi all

This is just a really quick question - not sure how easy the answer is. I've had a look on this forum and online in general and can't find the answer I'm looking for.

I have a text string in textbox 1, and a button, and I want the button to place the text string onto the Windows clipboard.

Anyone have any code that could help me out with that one?

Thanks for reading and have a nice evening.

DominicB
 
VB.NET:
Clipboard.SetText("hello clipboard")
 
Back
Top