I'm tring to figure out how to enable a disabled menu... i've tried menu .enabled... Please help
Printable View
I'm tring to figure out how to enable a disabled menu... i've tried menu .enabled... Please help
Doesnt menu.enabled=true works? Could you show you code?
Are you doing?
VB Code:
Menu.Enabled = true
cos that should work
If this is a menu that you created using the menu editor you will need to refer to the menu name and not just menu.
VB Code:
'Assumes that mnuFile is the name of your menu item mnuFile.Enabled = False 'Or mnuFile.Enabled = True
thanks guys... i forgot to use "= true" part
Glad to help. Hey Rob, I think you missed this one. ;)