Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Coding a pop-up menu..
Message
From
29/09/1999 23:19:37
Larry Santos
Local Data System
Philippines
 
General information
Forum:
Visual Basic
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00270615
Message ID:
00270867
Views:
20
Eric,

Thanks for you response...I mean i want how to create a program coded POP-UP MENU not creating a Menu Editor....coz i just want to change the code.. for every procedure...

TIA...



>>is there anyone can help me to code the pop-up menu so that i can manipulate by my code....
>
>You can't modify the system popup menu but you can create you own. I don't know if it is your question but here is the way of creating your own:
>1- Create a regular menu on a form (normally invisible).
>2- In the MouseDown event of your control, display the popup menu like this:
>Private Sub Text1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
> If Button = vbRightButton Then
> Text1.Enabled = False
> Text1.Enabled = True
> Me.PopupMenu mnuTest
> End If
>End Sub
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform