|
-
Jun 28th, 2000, 11:52 PM
#1
Thread Starter
Member
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
Cease
This post has been brought to you with the help of:
-
Jun 29th, 2000, 01:28 AM
#2
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]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|