Thanks a lot to puppydogbuddy : I add that you can also keep shortcut menu by changing the property of the form on its Open event. Basically, you have to :
- turn off Shortcutmenu in Property menu of the form
- add the code below :
Code:
Private Sub Form_Open(Cancel As Integer) Me.ShortcutMenu = True End Sub
Leave a comment: