C CoddFish Registered User. Local time Today, 16:33 Joined May 26, 2003 Messages 36 May 26, 2003 #1 I want to create a form where all controls are initially hidden except for a single combo box. I would like to make the other controls visible only after the combo box has been populated. How can I do this? thanks.
I want to create a form where all controls are initially hidden except for a single combo box. I would like to make the other controls visible only after the combo box has been populated. How can I do this? thanks.
jfgambit Kinetic Card Dealer Local time Today, 23:33 Joined Jul 18, 2002 Messages 798 May 26, 2003 #2 Add the following to the On Change event of the Combobox: If Not IsNull(Me.ComboboxName) or me.ComboboxName <> "" then me.CommandButton01.Enabled = True Else End if
Add the following to the On Change event of the Combobox: If Not IsNull(Me.ComboboxName) or me.ComboboxName <> "" then me.CommandButton01.Enabled = True Else End if