Form controls hidden until condition met

CoddFish

Registered User.
Local time
Yesterday, 23:26
Joined
May 26, 2003
Messages
36
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.
 
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
 

Users who are viewing this thread

Back
Top Bottom