How to spellcheck combo-boxes & only current record

  • Thread starter Thread starter Emidio
  • Start date Start date
E

Emidio

Hi, 1st problem: when I click spell check on a combo-box
containing text data I get an error saying that the spell-
checker only works on fields containing text.
2nd problem: when I click spell-check on a field in a form
it checks not only the current record but the same field
in all the records. Is there a way to check only the
current record. And if you are feeling ambitious, is there
a way to check ALL the fields on the form rather than just
the current active field?

Thanks
 
Here is an exampleof using spell check for just one field. The memo field.
Hope this Helps. Otherwise just press F7 for spell check when field is
highlited.

Me.Memo.SetFocus
RunCommand acCmdSpelling
 
Back
Top