Spelling

  • Thread starter Thread starter Shawn
  • Start date Start date
S

Shawn

I would like to set a form up so after exiting a text box
it will spell check that text box. How do I limit it to
only check one text box at a time? Module? Code?
THX
 
Try
SpellCheck a text box

RunCommand acCmdSpelling

Use the AfterUpdate event of the text box if you want it
automatically, or use a command button and SetFocus to the
control first.

Good Luck

Jim
 
Back
Top