If a value in my combo1 has a subcatergory then combo2 will automatically appear with a list of values that relates to the value in combo1 taht I chosed. Once I select the value for combo2 and then choose a new value for combo1 for the next record, combo 2 disappears in the previous record. When I go back and click in the area where combo2 should be it appears, but then appears in all the records on my continuous form. If I go back to a record that doesn't require a combo2, then combo2 disappears form the records that DOES require a combo2 value.
Get the point? haha... sorry, kind of repitative, but I just wanted you to understand my situation. Here's my current codes in the ON CURRENT of the form and AFTER UPDATE of combo1 control.
If Me.cboDiagnosis1.Column(2) = True Then
Me.cboDiagnosis2.Visible = True
Else
Me.cboDiagnosis2.Visible = False
End If
Me.cboDiagnosis2.Requery
Any help would be appreciated. THANKS!
Get the point? haha... sorry, kind of repitative, but I just wanted you to understand my situation. Here's my current codes in the ON CURRENT of the form and AFTER UPDATE of combo1 control.
If Me.cboDiagnosis1.Column(2) = True Then
Me.cboDiagnosis2.Visible = True
Else
Me.cboDiagnosis2.Visible = False
End If
Me.cboDiagnosis2.Requery
Any help would be appreciated. THANKS!