Access 2007 Spell Check

  • Thread starter Thread starter JamesJ
  • Start date Start date
J

JamesJ

I'm using the RunCommand|Spelling in a macro and invoke it from a shortcut
menu on a form.
How do I keep the speller from wanting to move to the next record?
I have the form's Cycle property to Current Record.

Thanks,
James
 
I'm using the RunCommand|Spelling in a macro and invoke it from a shortcut
menu on a form.
How do I keep the speller from wanting to move to the next record?
I have the form's Cycle property to Current Record.

So you just want to check the current record? Have your macro first select
the record, then check the spelling:

RunCommand SelectRecord
RunCommand Spelling
 
Back
Top