I have a subform with fields that are disable. I have code in one of the fields to unlock a field the condition is true. This works but unlocks all the records. I just want to unlock a field for that record. Below is the code I am using now, any help would be greatly appreciated.
Private Sub Time_codes_LostFocus()
If [time codes] = "os" Then
[pwsid #].Enabled = True
End If
End Sub
Thanks
Tim
Private Sub Time_codes_LostFocus()
If [time codes] = "os" Then
[pwsid #].Enabled = True
End If
End Sub
Thanks
Tim