-
Okay this will probably seem pointless to most but what the hell, is it possible to call a TOTALLY different popup menu from another popup menu (and im not talking about submenus!)???
Another question, can you set the position on the screen where the popup menu appears???
Thanx
-
To answer question 1:
Create two forms that have a menu on each.
Form1: File (mnufile) > Popup (mnupop)
Form2: File (mnufile) > Whatever (mnuwhat)
On form1, this goes in popup:
[/code]
Private Sub mnupopup_Click()
PopupMenu Form2.mnufile
End Sub
[/code]
For question 2:
[/code]
PopupMenu frm.mnufile, 0, button.Left, button.Height
[/code]