Thursday, July 5, 2018

Disable Design View of a MS Access Database using VBA Code



Disable Design View of a MS Access Database using VBA Code


Private Sub Form_Open(Cancel As Integer)
Me.ShortcutMenu = False
End Sub

Put above code in Code Editor under the Form Open Event.

No comments:

Post a Comment

How to create Access form to enter data

How to create Access form to enter data From our previous lesson 01 we have learnt that how to create access database and how to enter da...