forms-popups

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
 
J

JohnFol

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
 
V

Van T. Dinh

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top