B
Ben Pelech
Hello, I am trying to see if I can show/hide about 5 combo boxes based on
whether a check box is displayed. Right now, the code I found so far, only
allows me to Show them if the check box is selected but will not hide them if
it is unselected. Below is the current code
Private Sub Was_Contact_due_to_Error__Click()
Me.Combobox1.Visible = True
Me.ComboBox2.Visible = True
Me.ComboBox3.Visible = True
Me.ComboBox4.Visible = True
Me.ComboBox5.Visible = True
End Sub
I would also like a way to add in the code to add new form that will refresh
these combo boxes on the new form if the previous was selected. It doesnt
seem to completely refresh if there was an error on the previous form and the
check box was selected.
Any help would be greatly appreciated
Thanks
whether a check box is displayed. Right now, the code I found so far, only
allows me to Show them if the check box is selected but will not hide them if
it is unselected. Below is the current code
Private Sub Was_Contact_due_to_Error__Click()
Me.Combobox1.Visible = True
Me.ComboBox2.Visible = True
Me.ComboBox3.Visible = True
Me.ComboBox4.Visible = True
Me.ComboBox5.Visible = True
End Sub
I would also like a way to add in the code to add new form that will refresh
these combo boxes on the new form if the previous was selected. It doesnt
seem to completely refresh if there was an error on the previous form and the
check box was selected.
Any help would be greatly appreciated
Thanks