Filter For: menu item, custom menu

  • Thread starter jerry001 via AccessMonster.com
  • Start date
J

jerry001 via AccessMonster.com

I have disabled menus and hot keys for users in my app.
I need them to be able to use the right click menu in forms though mainly to
use the
Filter For: _______ option.

Problem is, I cannot enable ONLY the right click menu bar, I cannot locate
the Filter For:______ button to insert it in a custom menu.

if anyone knows how I could solve one of these problems please help.

thank you.

ps. I have used the following code to disable menus but no luck.

Dim i as integer
For i= 1 To CommandBars.Count
If InStr(CommandBars(i).Name, "Popup") = 0 Then CommandBars(i).Enabled =
False
Next i
 

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