spell check a form

  • Thread starter Thread starter Deb
  • Start date Start date
D

Deb

I know that f7 spell checks in the forms when entering
data, but how do I set the form so it will only spell
check the current record, and not every record I have for
that form?
 
Deb said:
I know that f7 spell checks in the forms when entering
data, but how do I set the form so it will only spell
check the current record, and not every record I have for
that form?

IIRC, you have to first select the current record, then request the
spell check. If you're doing this manually, click on the record
selector to the left of the record to select the record, then press F7.
If you're doing it with VB code, then

RunCommand acCmdSelectRecord
RunCommand acCmdSpelling
 
Back
Top