Spell checking current record

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?
 
D

Dirk Goldgar

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
 
J

jamccarley

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)
 

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

Similar Threads


Top