Enabling menu option...

  • Thread starter Thread starter Brett Davis
  • Start date Start date
B

Brett Davis

Hello

I want to enable an option under my custom menu for a given form. So for
example on my switchboard i have File -> Save disabled. When I open my
client form I want to enable File -> Save menu option. I want to do this in
VBA. I am using Microsoft Access 2000.

Please advise...

Thank you,
Brett
 
If you assign a tag value to the menu item, you can use the FindControl
method, like:

CommandBars(menu).FindControl(Tag:="save").Enabled = True
 

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