Victor Egbe Newbie
Joined: 23 Mar 2006 Posts: 4 Location: Abuja, Nigeria
|
Posted: Apr 11th, 2006 07:35 AM Post subject: popupMenu |
|
|
In VB6 you can issue the popupmenu command against any menu item that has submenus.
Say you have a File menu named mnuFile.
if this File menu has sub-menus:
...New
...Print
...Setup
...Exit
In your command_click issue the popupMenu command as follows:
Private Sub Command1_Click()
PopupMenu mnuFile
End Sub
The menu items New, Print, Setup, Exit will popup beside the command button.
Enjoy
Vie
@Abuja, Nigeria _________________ Sin lies at the door... |
|