Hi
How I disabled all option from menu ?
Printable View
Hi
How I disabled all option from menu ?
Say the menu you want to disable all the items of is called mnuMother and you have mnuBob and mnuSandra and mnuDave as menu items, if you just disable the mother (mnuMother) then it should disable Bob Sandra and Dave. Actually I think it might stop the menu from appearing, but if you can't select anything from the menu anyway would you need to see it?
Code:mnuName.enabled = "False"
Thank you , but I want disabled "ALL MENU" and all option from menu, I want do a loop or other things
thank you very much
or..Code:Private Sub Form_Load()
mnuOne.enabled = False
mnuTwo.enabled = False
mnuThree.enabled = False
End Sub
Im not real sure what it is your asking.. but I think that should answer it.Code:Private Sub Form_Load()
mnuOne.visible = False
mnuTwo.visible = False
mnuThree.visible = False
End Sub