This is used for my Popupmenu *copy* *paste* commands
This is used for my Popupmenu *copy* *paste* commands
Rate This is used for my Popupmenu *copy* *paste* commands
(1(1 Vote))
'Menus can be created by right clicking on the FORM(!) and going to Menu Edit
Private Sub Text1_MouseUp(Button As Integer, Shift As Integer, x As Single, y As Single)
If Button = vbRightButton Then PopupMenu EditMenu
End Sub
Private Sub Copy_Click()
Clipboard.SetText Text1.SelText
End Sub
Private Sub Paste_Click()
Text1.SelText = Clipboard.GetText
End Sub
This is used for my Popupmenu *copy* *paste* commands Comments
No comments yet — be the first to post one!
Post a Comment