Dimming Menu Items

  • Thread starter Thread starter Berny
  • Start date Start date
B

Berny

Can someone tell me if there is a way of dimming Menu items in an Access
application.

I've created a custom Menu and want to dim items based on the users Access.

If so, what is the VBA coding look like?????

Or is VBA the correct way to do it?

Any help is appreciated.
 
Try something like so:

CommandBars("MyCustomBar").Controls("MyOption").Controls("MyControl").Enabled = False

You may have to experiment based on your setup.
Basically you are "walking down" the menu list.
 

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

Back
Top