Spell Check Error

J

JKro

I have a form that is bound to a query in access 97. I have some fields on
this form that are not bound. I want to do a spell check on this fields.

Here is the code I am using:

Private Sub txtIntNotesAdd_LostFocus()
If Len(txtIntNotesAdd.Text) > 0 Then
txtIntNotesAdd.SelStart = 0
txtIntNotesAdd.SelLength = Len(txtIntNotesAdd.Text)
DoCmd.RunCommand acCmdSpelling
End If
End Sub

This code worked fine when the form was not bound to a query but now that
the form is bound, I get the following error message:

The Spelling Checker can't proceed; Form data is not updateable. Form may be
based on query that isn't updateable or is only partly updateable.

Is there any way I can apply the Spell checker to a field that is unbound
but the form has a record source?

I'd appreciate any help.
 
Top