can you give me an example of adding text to the clipboard?
thanks...
Printable View
can you give me an example of adding text to the clipboard?
thanks...
Like this?
Code:Clipboard.SetText "This will be in the Clipboard area"
Saludos...;)
text1 (TextBox)
Command1 (Command Button)
Code:'This is a poor example though, since
' a textbox already has the copy command embedded
Private Sub Command1_Click()
Clipboard.SetText Text1.SelText
End Sub
Remember, you should always clear the clipboard before adding something new to it.
Code:Clipboard.Clear
thanks every 1 !!!