|
-
July 17th, 2003, 12:33 AM
#1
copy button
how do I make a cmd button that does the same as ctrl + C or rightclick > Copy
-
July 17th, 2003, 12:53 AM
#2
Clipboard.SetText (Text1.Text)
will copy the Text1 data to the clip board
-
July 17th, 2003, 02:04 PM
#3
' Empty the clipboard
Clipboard.Clear
' Put selected text on the clipboard
Clipboard.SetText Screen.ActiveControl.SelText
-
July 17th, 2003, 08:13 PM
#4
can i just make it paste into a textfile?
-
July 17th, 2003, 11:48 PM
#5
Clipboard.SetText Text1.Text
Text2.Text = Clipboard.GetText
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|