Whats the code to copy soemthing in Text1...
I want them to have to click a command button and not ctrl c so the code to select text1 would be what?Thx guys
Printable View
Whats the code to copy soemthing in Text1...
I want them to have to click a command button and not ctrl c so the code to select text1 would be what?Thx guys
VB Code:
Private Sub Command1_Click() Clipboard.Clear Clipboard.SetText (Text1.Text) End Sub
thx man stupid question just didnt know what it was lol thx tho