Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Code/macro for spellcheck

Status
Not open for further replies.

LeiDBug007

Technical User
Oct 15, 2003
33
US
Greetings Experts,

We've got a memo field that users enter their notes on each case. We would like the spellcheck feature/command to run (when needed) on misspelled words.

Your expertise is much needed, thanx!

~LeiDBug007
 
Put this code in beforeupdate, afterupdate, or onexit!


DoCmd.SetWarnings False 'Turn off System Warning if spell check returns no error.
DoCmd.RunCommand acCmdSelectRecord
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True 'Turn back on the System Warnings
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top