Task Create popup menu
For Example :
Caption : File
Name : mnFile
CODE
'For making an Popupmenu action
Private Sub Form_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then
PopupMenu mnFile
End If
End Sub
MsgBox "This is Popupmenu", vbInformation, "Info"
End Sub
0 comments:
Post a Comment