MS Acccess Spell Checker VBA code

Joined
Oct 27, 2009
Messages
1
Reaction score
0
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
 
Back
Top