Whats the command to clear current field when adding AfterUpdate() and BeforeUpdate() ?
Im using something like this but not working.
Im using something like this but not working.
Code:
Private Sub Data1_AfterUpdate()
If Data1 = LCase(Data1) Then
MsgBox "You have to use CAPS"
Me.Field = Null
Me.SetFocus
Else
Resume
End If
End Sub