Enabling menu option...

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
 
J

JonathanF

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

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