Created
January 21, 2021 11:52
-
-
Save idarek/2844a27a03daeadbf4072ddbf0774584 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Private Sub FieldName_LostFocus() | |
If Not IsNull(FieldName) Then | |
With FieldName | |
.SetFocus | |
.SelStart = 0 | |
.SelLength = Len(FieldName) | |
End With | |
DoCmd.SetWarnings False | |
RunCommand acCmdSpelling | |
DoCmd.SetWarnings True | |
End If | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment