Hi,
If my check box named "CheckBoxStep3" is checked I do NOT want edits allowed on the form.
If the check box "CheckBoxStep3" is not checked then edits are allowed.
My code is not working! Please help...thanks!
Private Sub Form_Current()
If Me.CheckBoxStep3 = True Then
Me.AllowEdits = False
Else
Me.AllowEdits = True
End If
End Sub
If my check box named "CheckBoxStep3" is checked I do NOT want edits allowed on the form.
If the check box "CheckBoxStep3" is not checked then edits are allowed.
My code is not working! Please help...thanks!
Private Sub Form_Current()
If Me.CheckBoxStep3 = True Then
Me.AllowEdits = False
Else
Me.AllowEdits = True
End If
End Sub