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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top