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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Spell check option / command on form 1

Status
Not open for further replies.

traffas

Programmer
Feb 27, 2002
42
0
0
US
I have a form that is presented to the user.... It has a memo field that contains a 'narritive'. Is there a way to add a "spell check" command on the form so that the user can use spell check prior to exiting the form?

Many thanks in advance for your consideration

Shawn
 
Yes - but first make sure you SELECT THE CURRENT RECORD. Then call the acCmdSpelling method:

Docmd.RunCommand acCmdSpelling

If you don't select the current record first, the spellchecker will do your entire table.

"Remember, you're unique - just like everyone else"
You're invited to visit another free Access forum:
or my site,
 
many thanks to you, will try.......
 
I think to DoCmd is the way to go in this instance. Just so you know, you can also add SpellCheck icon to a custom toolbar and show that toolbar to users wherever appropriate. Also, for a poor-mans spellcheck you can highlight text with cursor and click F7 in Access.
 
For non checking of capital letters see KB article Q199253
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top