Guest_imported
New member
- Jan 1, 1970
- 0
I want to create a check box on the Form so whenever the user select it, Some fields will be disabled. Below is the function:
Private Sub USB_Click()
If ([USB].Value = -1) Then
[USBID].Enabled = True
Else
[USBID].Enabled = False
End If
End Sub
However, this function will take effect on all records, not with the current record.
Thanks in advance,
Private Sub USB_Click()
If ([USB].Value = -1) Then
[USBID].Enabled = True
Else
[USBID].Enabled = False
End If
End Sub
However, this function will take effect on all records, not with the current record.
Thanks in advance,