Access 2003: Form spell checking

Add this:

Private Sub txtBookReview_AfterUpdate()
'If the textbox contains data run the
'Spell Checker after data is entered.
If Len(Me!txtBookReview & "") > 0 Then
DoCmd.SetWarnings False
DoCmd.RunCommand acCmdSpelling
DoCmd.SetWarnings True
End Sub

Will cause a spelling dialog to come up...

 

http://www.microsoft.com/communities/newsgroups/en-us/default.aspx?dg=microsoft.public.access.formscoding&tid=e2316f13-1e2c-4025-8963-c19c20d656cf&cat=en_US_5c72d993-4d7b-4978-87f0-2459ffa1226a&lang=en&cr=US&sloc=en-us&m=1&p=1