Spellchecker

  • Thread starter Thread starter marilyn_l_nathan
  • Start date Start date
Is there a way to invoke Spell checker in an ACCESS 2000
form?


DoCmd.RunCommand acCmdSpelling

This, by itself, is very heavy handed in that it checks
every field in every record in the form's record source.

If you only want to check a single text box, then include
this kind of logic:

With Me.thetextbox
.SetFocus
.SelStart = 0 : .SelLength = Len(.Text)
End With
DoCmd.RunCommand acCmdSpelling

If you want to check a bunch of text boxes, repeat the above
for each text box.
 
Back
Top