Spell checking current record

  • Thread starter Thread starter jamccarley
  • Start date Start date
J

jamccarley

I have added a spell check to a database using

DoCmd.RunCommand acCmdSpelling

Which works, I just want it to spell check the current record, not the whole
database. Is that possible?
 
jamccarley said:
I have added a spell check to a database using

DoCmd.RunCommand acCmdSpelling

Which works, I just want it to spell check the current record, not the
whole
database. Is that possible?


IIRC, if you select the record first, it only spell-checks that record. So
try:

DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdSpelling
 
That worked perfectly, you the man.

Thanks

Dirk Goldgar said:
IIRC, if you select the record first, it only spell-checks that record. So
try:

DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdSpelling


--
Dirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.html

(please reply to the newsgroup)
 
Back
Top