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).]