Right click on Forms

Jose

Registered User.
Local time
Today, 01:41
Joined
Nov 3, 2010
Messages
31
Hello,

I was wondering if you could help me with a little problem I have and see if you guys know any solutions.

I have a continuous form, when I do a right click on the form I get the shortcut menu with Form view, Design view, Layout view, copy, paste, etc.. as you know. If a I go to a text box in the same form and I do a right click, I get a different menu with cut, copy, text filters etc..

My question is, how can i disable the right click that someone can do on the form area so people dont have access to change the form's default view but at the same time if they do a right click on any text boxes the default menus appear.

I am aware that on design view I could go to the "Other" tab, and set shortcut menu to "No" but that will disable all the menus and I just want to disable some menus as I explain before.

Any ideas?

Thank you very much for your help
 
You're going to have to do it using VBA

CurrentDb.Properties("AllowShortcutMenus") = False
 
Is that on the open form for the database?
 

Users who are viewing this thread

Back
Top Bottom