Tip

Automatic Spellchecking For Notes Mail

Here is a simple way of allowing users to automatically spell check there mail
messages on the sending of a message.

All that needs to be done is create a profile document called SpellCheckProfile
with a field called AutoSpellCheck that will hold the values of Yes or No.
Then you should build some interface to change the field.

Once that is done all you have to do is add the attached code to the top of all
the actions that send the mail message.
speller:=@GetProfileField("SpellCheckProfile"; "AutoSpellCheck");
@If(speller="Yes";@Command([EditGotoField];"Body") & @Command([EditSelectAll])
& @Command([ToolsSpellCheck]);"");

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.