I have the following code to perform spell checker on a form:
If Len(Me!Description & "") > 0 Then
Me.Description.SetFocus
DoCmd.RunCommand acCmdSpelling
Else
Exit Sub
End If
The above is within the Save Button. When I click save the above spell checker works and within the spell checker dialog, it does pick up the incorrect spelling, but the changes do not get saved
If Len(Me!Description & "") > 0 Then
Me.Description.SetFocus
DoCmd.RunCommand acCmdSpelling
Else
Exit Sub
End If
The above is within the Save Button. When I click save the above spell checker works and within the spell checker dialog, it does pick up the incorrect spelling, but the changes do not get saved