S
Susan L
I created a control (cboProd_Testing) that is supposed to be invisible until
a specific value (2 for "Application Error") is selected in another combo box
on the form (cboCategory). When I go to a record and select Application
Error, the cboProd_Testing appears. The trouble is that it appears on all
records, not just those on which Application Error is selected.
Using info I found here, I put the following code in the After Update event
of cboCategory (see line 3) (the requery is for another combo):
Private Sub cboCategory_AfterUpdate()
cboDescription.Requery
'cboProd_Testing is visible when cboCategory = Application Error.
Me![cboProd_Testing].Visible = (Me.cboCategory = 2)
End Sub
Can anyone offer any suggestions for what to do?
a specific value (2 for "Application Error") is selected in another combo box
on the form (cboCategory). When I go to a record and select Application
Error, the cboProd_Testing appears. The trouble is that it appears on all
records, not just those on which Application Error is selected.
Using info I found here, I put the following code in the After Update event
of cboCategory (see line 3) (the requery is for another combo):
Private Sub cboCategory_AfterUpdate()
cboDescription.Requery
'cboProd_Testing is visible when cboCategory = Application Error.
Me![cboProd_Testing].Visible = (Me.cboCategory = 2)
End Sub
Can anyone offer any suggestions for what to do?