N
Nocturnl
I'm doing a very simple form,
I need a combobox to be visible after a selection is made in the previous
combobox
my code is:
Private Sub Current_status_AfterUpdate()
Select Case Current_status
Case "poor"
Me.Poor_why.Visible = True
Me.Poor_why_lbl.Visible = True
End Select
End Sub
When i preview the form the combobox i've made visible = false is still
visible ... am i doing something incorrect, thankyou
I need a combobox to be visible after a selection is made in the previous
combobox
my code is:
Private Sub Current_status_AfterUpdate()
Select Case Current_status
Case "poor"
Me.Poor_why.Visible = True
Me.Poor_why_lbl.Visible = True
End Select
End Sub
When i preview the form the combobox i've made visible = false is still
visible ... am i doing something incorrect, thankyou