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!

Autospellcheck available in Lotus Notes???

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Is an "auto spellcheck before sending" option for sending messages available in Lotus Notes 4.5.5?If yes, how is it activated?
 
Not that I know of, but it was the first thing I saw and liked about R5.

Bryan
 
If you are not moving to R5 of Notes then you will need to do a little coding to do this. There are plenty of ways to achieve this but the simple method is to edit the Send buttons on ALL forms and add the following code to the top:

@PostedCommand([EditTop]); @PostedCommand([EditNextField]); @PostedCommand([EditNextField]); @PostedCommand([EditNextField]);
@PostedCommand([EditNextField]); @PostedCommand([EditNextField]); @PostedCommand([EditSelectAll]);
@PostedCommand([ToolsSpellCheck]); @PostedCommand([EditDeselectAll]);


Copy the code above as it is. It works. If you need a more advanced version (ie. user ability to turn on/off) then go to the Notes.net web site and search the database for 'spell check'.

I hope this helps.

[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top