View Full Version : Spell check


Martix
08-29-2001, 06:30 AM
How do i get a spell checker to function insode of a notes field

Martix
08-29-2001, 06:35 AM
To be more specific, i want the notes field to automatically check spelling like Microsoft Word does during input. Is this possible

Martix
08-30-2001, 08:35 AM
Still hoping for some help on this one, ny inof even a "No its impossible" would help

jimbrooking
08-31-2001, 04:29 PM
Martix,

I don't think Access has an autocorrect like Word. The only thing I could suggest is to run the spell checker before saving the data. For example, you could put the following in the form's BeforeUpdate event:

DoCmd.RunCommand acCmdSpelling

to run the spell checker before the data is saved. I don't know if you can get any information back from this, e.g., if the user cancels out before completing the spell check, but I suppose it's better than nothing.

There is probably a way to 1. invoke Word, 2. let the user input the text into Word, and 3. get control and the entered text back again to store in your table but this seems like a lot of code and trouble to me.

Jim


[This message has been edited by jimbrooking (edited 08-31-2001).]

[This message has been edited by jimbrooking (edited 08-31-2001).]

Fornatian
08-31-2001, 11:26 PM
Press F7 when you're in the field!