|
-
Feb 6th, 2008, 05:46 AM
#1
Thread Starter
Frenzied Member
[RESOLVED] pop up menu right click
I have problem here, in my popup menu have this menu, A,B,C
I show all menu when I right click on mouse.
How do show only C menu when I right click on mouse and invisible the other?
Code:
If Button = vbRightButton Then
PopupMenu Layer
End If
-
Feb 6th, 2008, 06:30 AM
#2
Re: pop up menu right click
Try this
Code:
If vbRightButton Then
a.Visible = False
b.Visible = False
Me.PopupMenu POPUP
End If
where a and b are the names of the menuitems.
-
Feb 6th, 2008, 06:45 AM
#3
Thread Starter
Frenzied Member
Re: [RESOLVED] pop up menu right click
Thank you amrita, I got an idea from this
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
|