I have used a spell check on a field in my form and used this code on the after update:
Private Sub (Field Name)_AfterUpdate()
'If the textbox contains data run the
'Spell Checker after data is entered.
If Len(Me!(Field Name) & "") > 0 Then
DoCmd.RunCommand acCmdSpelling
Else
Exit Sub
End If
End Sub
However, if it returns no spelling errors it comes up with a message saying that there are no spelling errors. Is there anyway of suppressing that error message so it doesn't come up.
Any help would be appreciated.