New tip to totally workaround !!!

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
Then the form in datasheetview mode will open without builtin...