spell check

  • Thread starter Thread starter SC
  • Start date Start date
S

SC

hi there,

I'm trying to do a spell check on each text field before update. I read
somewhere i can do it via a the spelling function in word.application.
However i don't really want to create a word object within our access
application.

I noticed there's a spell check function (F7) in Access and that's exactly
what i want but to do it automatically. Can we call this function from a VB
module?

Thanks in advance.

shawn
 
Try this
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.

Jim
 
Back
Top