Am I missing something. I have trawled thru the posts and came up with this...
Private Sub mnuCopy_Click()
Clipboard.Clear
Clipboard.SetText Text1.SelText
End Sub
I modified it to :
Private Sub Mysub()
Dim Mytext as string
Mytext = "sometext"
Clipboard.Clear
Clipboard.SetText Mytext
End Sub
I added it to my code, it runs thru it fine, but does not copy anything to the clipboard
Any help please!!!
Thanks
Georg
Private Sub mnuCopy_Click()
Clipboard.Clear
Clipboard.SetText Text1.SelText
End Sub
I modified it to :
Private Sub Mysub()
Dim Mytext as string
Mytext = "sometext"
Clipboard.Clear
Clipboard.SetText Mytext
End Sub
I added it to my code, it runs thru it fine, but does not copy anything to the clipboard
Any help please!!!
Thanks
Georg