|
-
November 20th, 1999, 04:12 PM
#1
Pull Down Menu on Right Mouse click
I have a List View Control in my Application.
How can I make a pull down Menu when the user clicks the Right Mouse Button on an Entry.
mfG Pueromane
-
November 20th, 1999, 07:08 PM
#2
Re: Pull Down Menu on Right Mouse click
Create Menu, set Visible=False and in Mous_Down event for List put:
private Sub List1_MouseDown(Button as Integer, Shift as Integer, X as Single, Y as Single)
If Button = 2 then
Form1.PopupMenu mnuFirst 'the name of Menu is mnuFirst
End If
End Sub
Vlad
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
|