I'm using code to disable a field when a checkbox is checked.
Ex.
If chkBox=-1 Then
Item.Enabled=False
Else
Item.Enabled=True
End If
And I've had to put these in the OnCurrent Event of the form as well as the afterupdate on the checkbox. But. I'm using a tabular form, and it's disabling the whole column. Can I disable only that record's entry?
Ex.
If chkBox=-1 Then
Item.Enabled=False
Else
Item.Enabled=True
End If
And I've had to put these in the OnCurrent Event of the form as well as the afterupdate on the checkbox. But. I'm using a tabular form, and it's disabling the whole column. Can I disable only that record's entry?