• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Hide a Combo box based on a condition

sure thing. You need to use a Combo Box from the controls toolbar (the one you can modify via VB). Youcan figure out how to code the condition, but basic code:


Sub HideMe()

'ComboBox1 is the name of combo box we want to change

ComboBox1.Visible = False 'Toggle this as desired

End Sub
 
Back
Top