how do i make a menu come up when the user right-clicks the mouse?
...one more thing. how do i add my own menu option to the menu that come's up when you right-click a program's taskbar icon?
thanks!!
Printable View
how do i make a menu come up when the user right-clicks the mouse?
...one more thing. how do i add my own menu option to the menu that come's up when you right-click a program's taskbar icon?
thanks!!
To make a menu pop up.
Code:Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button = 2 Then PopupMenu MyMenu
End Sub