Hi,
I want copying and pasting text between two different VB applications as done in microsoft applications, if i copy a text from my text editor, it can be pasted in note pad or another VB application.
Thanx
Printable View
Hi,
I want copying and pasting text between two different VB applications as done in microsoft applications, if i copy a text from my text editor, it can be pasted in note pad or another VB application.
Thanx
Simple
VB Code:
ClipBoard.SetText "Some Text"
Then try pasting in another app.
Hiow would I make the code work with a text box , and how do you paste and clear text?
ClipBoard.SetText = Text1.Text
Text1.Text = Clipboard.GetText
Thanks, for the code-just what Iwas looking for