hi guys
I wanted to know how can i copy a string into clipboard via vb codes can anybody help?
thank u
Printable View
hi guys
I wanted to know how can i copy a string into clipboard via vb codes can anybody help?
thank u
VB Code:
Clipboard.SetText (strToAdd)
thank u:)
It's always a good idea to delete the contents of the clipboard before saving into it.VB Code:
Clipboard.Clear Clipboard.SetText strToAdd