Jul 13, 2001 #1 slandeck Programmer Joined Jul 13, 2001 Messages 5 Location US Depending on which selection you choose from a drop down menu, how do you make another drop down menu on the same form disapear and re-appear?
Depending on which selection you choose from a drop down menu, how do you make another drop down menu on the same form disapear and re-appear?
Jul 13, 2001 #2 Scoty Programmer Joined Oct 25, 2000 Messages 278 Location US Slandeck, Very simple. In the afterupdate event of you main dropdown menu (your selection menu) you just type: Code: If MyDropDownMenu = "This String" then 'Set your condition Me.SecondaryMenu.Visible = False 'This will make it disappear End If This will take a condition and based on the value of the selection will make my SecondaryMenu Disappear. To make a menu appear just use Code: Me.ThirtiaryMenu.Visible = True Hope this helps Scotty : Upvote 0 Downvote
Slandeck, Very simple. In the afterupdate event of you main dropdown menu (your selection menu) you just type: Code: If MyDropDownMenu = "This String" then 'Set your condition Me.SecondaryMenu.Visible = False 'This will make it disappear End If This will take a condition and based on the value of the selection will make my SecondaryMenu Disappear. To make a menu appear just use Code: Me.ThirtiaryMenu.Visible = True Hope this helps Scotty :