How do I get the menu to show when I right click and not in the top of the form.
Printable View
How do I get the menu to show when I right click and not in the top of the form.
Make a menu, make it invisible, call it mnuPopTest
add this to u'r forms mouseDown Event
VB Code:
Private Sub Form_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single) PopupMenu mnuPopTest End Sub
as a sample :)
PopupMenu was the way...