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.
http://www.devcity.net/net/article.aspx?alias=spellcheck
--
OHM ( Terry Burns )
. . . One-Handed-Man . . .
Time flies when you don't know what you're doing
"Jason L James" <ja...@no-spam.dive-master.org> wrote in message
news:40f8d97f...@news.newnet.co.uk...
Office spell check control. Requires office to be installed.
http://www.windowsforms.com/Samples/download.aspx?PageId=1&ItemId=185&tabindex=4
There is a spell check control from Component one in the vb.net resource
kit.
http://msdn.microsoft.com/vbasic/vbrkit/default.aspx
Ken
-------------------------
"Jason L James" <ja...@no-spam.dive-master.org> wrote in message
news:40f8d97f...@news.newnet.co.uk...
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() _
)
///
--
Herfried K. Wagner [MVP]
<URL:http://dotnet.mvps.org/>