Results 1 to 5 of 5

Thread: disabled menu

  1. #1

    Thread Starter
    Fanatic Member mutley's Avatar
    Join Date
    Apr 2000
    Location
    Sao Paulo - Brazil
    Posts
    709

    Question

    Hi

    How I disabled all option from menu ?


  2. #2
    Guest
    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?

  3. #3
    Addicted Member Stephen Bazemore's Avatar
    Join Date
    Aug 2000
    Location
    North Carolina
    Posts
    158
    Code:
    mnuName.enabled = "False"
    Stephen Bazemore
    Email:[email protected]

  4. #4

    Thread Starter
    Fanatic Member mutley's Avatar
    Join Date
    Apr 2000
    Location
    Sao Paulo - Brazil
    Posts
    709

    Unhappy 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

  5. #5
    Addicted Member Stephen Bazemore's Avatar
    Join Date
    Aug 2000
    Location
    North Carolina
    Posts
    158
    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.
    Stephen Bazemore
    Email:[email protected]

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width