Using a spell checker

  • Thread starter Thread starter Jason L James
  • Start date Start date
J

Jason L James

Dear all,

I have an app that captures text entry from
the user and stores it in an SQL DB. I want
to make sure that the text is spelt correctly
using a spell checked; possibly the one
included in MS Office. Does anyone have
any suggestions as to how I can use the
spell checker in my own applications.

Thanks,

Jason.
 
* Jason L James said:
I have an app that captures text entry from
the user and stores it in an SQL DB. I want
to make sure that the text is spelt correctly
using a spell checked; possibly the one
included in MS Office. Does anyone have
any suggestions as to how I can use the
spell checker in my own applications.

General info about Word automation:

HOW TO: Automate Word with VB .NET to Create a New Document
<URL:http://support.microsoft.com/?scid=kb;EN-US;316383>

Spell checking (untested):

\\\
Dim MyWordApp As New Word.Application()
MsgBox( _
"Spelling errors: " & _
MyWordApp.CheckSpelling("Hello world!").ToString() _
)
///
 
Back
Top