Spell Check in WinForms

G

Guest

Is there a way to implement Spell Check Functionality into WinForm (for the
text(s) contained/ entered in text box).
What are the best ways to implement spell checking in a WinForms application?

Thx.
 
Z

Zach

Vish said:
Is there a way to implement Spell Check Functionality into WinForm (for the
text(s) contained/ entered in text box).
What are the best ways to implement spell checking in a WinForms
application?

As far as I am aware you have to write a spell cheker yourself. That
is what I did anyway. There are sources on the web for vocabularies.
 
T

Tom Dacon

If you have MS Office on the client machine, you can use the Word
spell-checker. I've seen articles on how to do it but don't remember just
where right now. Try a google groups search on the microsoft dotnet NG's and
you'll probably turn up something.

There are also third-party spell checkers; I've used one or two in VS6
applications, and there are .Net versions by now. RapidSpell is one example.
A google search would find you something there too.

Tom Dacon
Dacon Software Consulting
 
S

Shiva

Here is one (in Visual Basic .NET):

http://msdn.microsoft.com/library/d.../en-us/odc_wd2003_ta/html/odc_wdspellchkr.asp

If you have MS Office on the client machine, you can use the Word
spell-checker. I've seen articles on how to do it but don't remember just
where right now. Try a google groups search on the microsoft dotnet NG's and
you'll probably turn up something.

There are also third-party spell checkers; I've used one or two in VS6
applications, and there are .Net versions by now. RapidSpell is one example.
A google search would find you something there too.

Tom Dacon
Dacon Software Consulting
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top