-
Excel VBA
I'm working on an existing Excel Project that uses a Dialog List to provide a list of options to the user.
What I don't understand is how to hide \ unhide these dialoglists. Can anyone give me an idea, or point me to a useful resource on for this topic.
Cheers
-
I am not too sure I am with you on the type of control. But you usually find visible property or at least a hide method. Which would just be the name of the control and then ControlName.visible = true (or false) or if you are refering to a form it is FormName.Hide or FormName.Show
Hope that helps