|
-
Oct 10th, 2000, 06:43 AM
#1
Thread Starter
Fanatic Member
Hi
How I disabled all option from menu ?
-
Oct 10th, 2000, 06:51 AM
#2
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?
-
Oct 10th, 2000, 07:17 AM
#3
Addicted Member
Code:
mnuName.enabled = "False"
-
Oct 10th, 2000, 11:05 AM
#4
Thread Starter
Fanatic Member
disabled menu
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
-
Oct 10th, 2000, 11:54 AM
#5
Addicted Member
Code:
Private Sub Form_Load()
mnuOne.enabled = False
mnuTwo.enabled = False
mnuThree.enabled = False
End Sub
or..
Code:
Private Sub Form_Load()
mnuOne.visible = False
mnuTwo.visible = False
mnuThree.visible = False
End Sub
Im not real sure what it is your asking.. but I think that should answer it.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|