I have a multiple item form that displays multiple items and allows the user to edit these items from one form.
There is a combo box which includes the value "Other". When this is selected, I would like a text box/label to appear for the user to specify what the Other is.
However, when I try:
If Combo = "Other" Then
Me.SpecifyLabel.Visible = True
Me.Specify.Visible = True
Else
Me.SpecifyLabel.Visible = False
Me.Specify.Visible = False
End If
It sets all of the SpecifyLabels and Specify's Visible = True/False (not just the record they are on). Is there a way to make them change the properties only for those objects in the current record?
There is a combo box which includes the value "Other". When this is selected, I would like a text box/label to appear for the user to specify what the Other is.
However, when I try:
If Combo = "Other" Then
Me.SpecifyLabel.Visible = True
Me.Specify.Visible = True
Else
Me.SpecifyLabel.Visible = False
Me.Specify.Visible = False
End If
It sets all of the SpecifyLabels and Specify's Visible = True/False (not just the record they are on). Is there a way to make them change the properties only for those objects in the current record?