Hi,
Please help on this. How can I let the buttonmenus shows when the toolbar menu is clicked?
Here is my code:
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Description
Case "Maintenance"
'I want to display submenus when this is clicked!
'button menus:
'1.) Employee
'2.) company
'3.) department
Case "Timecard"
MsgBox Button.Index
Case "Reports"
MsgBox Button.Index
Case "Tools"
MsgBox Button.Index
Case "Exit"
End
End Select
End Sub
Note: I don't want to enable tbrdropdown because it will display a little arrow in the side.
Thank you,