forms-popups

  • Thread starter Thread starter rathika
  • Start date Start date
R

rathika

hi
when u open a form in form view and right click, u see
the popup which provides u with options to change the
view even to desig view (which is dangerous) etc.

how do we avoid this popup and replace it
with our own popup.

thanks
rathika
 
I would suggest you implement security to do it properly, but this is a
quick and dirty

Private Sub Form_Unload(Cancel As Integer)
Cancel = True
End Sub
 
If you don't want this "right-click" Menu, set the "Shortcut Menu" Property
of the Form (in the "Other" tab of the Properties Window for the Form) to
No.

If you are really concerned about users modifying your database, use MDE
file and implement Access Security.
 
Back
Top