Hi how i am unsure of how to do this
click a button on my menu called OPTION BUTTONS and it will disable the menu it is in and then replace it with 3 command buttons.
Another button will enable the menu and make the 4 new command buttons dissappear
I would be very grateful with any help on this, your help is much appriciated
Thanks
Re: Hi how i am unsure of how to do this
VB Code:
menuName.Enabled = False
commandButtonName1.Visible = True
commandButtonName2.Visible = True
commandButtonName3.Visible = True
Is this what you're after?