I have a form that lists several Items (in "Continuous Forms" view).
Next to the Item Name, I have a checkbox.
The checkbox determines if the Item has a price.
If the checkbox is clicked by the user, a hidden textbox named "Price" becomes Visible.
Private Sub HasPrice_Click()
If HasPrice = True Then
Me.Price.Visible = True
Else
Me.Price.Visible = False
End If
End Sub
My problem is that, when you click the checkbox, the hidden textbox appears not only for that specific row, but for ALL the rows.
Any help at all is very much appreciated.
Thanks,
Asan
Next to the Item Name, I have a checkbox.
The checkbox determines if the Item has a price.
If the checkbox is clicked by the user, a hidden textbox named "Price" becomes Visible.
Private Sub HasPrice_Click()
If HasPrice = True Then
Me.Price.Visible = True
Else
Me.Price.Visible = False
End If
End Sub
My problem is that, when you click the checkbox, the hidden textbox appears not only for that specific row, but for ALL the rows.
Any help at all is very much appreciated.

Thanks,
Asan

