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
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