Text Box Spell Check

R

Ryan

Is there anyway to enable spell-checking for user input in a Text Box?
Either auto spell-check or create a spell-check button. Using VB 2005.
 
R

Rad [Visual C# MVP]

Is there anyway to enable spell-checking for user input in a Text Box?
Either auto spell-check or create a spell-check button. Using VB 2005.

Certainly not directly ... To do that you'll need some sort of third party
tool to do that. You could automate the office spell checker engine but i
think there may be licensing issues with that approach.

Or you could use a library like NetSpell
http://www.loresoft.com/Applications/NetSpell/default.aspx
 
R

Ryan

Hmmm.. this is unfortunate. A function built-in to Access as early as
version '97 doesn't make it into Visual Studio 2005? There's got to be a
way to spell-check.
 
M

Marina Levit [MVP]

What development framework actually have support for spell checking? I don't
know of any. Please name some, preferably mainstream.

The .NET framework does not ship with a spell checking component. As you can
imagine, this would be a very complicated thing to write, especially given
internationalization, would MS be then expected to ship a version that could
spell check all the languages?

In any case, there are probably some free components out there - there is
the usual risk you take with those. There are also plenty of places selling
fully functional spell checkers that include support, etc.

Ryan said:
Hmmm.. this is unfortunate. A function built-in to Access as early as
version '97 doesn't make it into Visual Studio 2005? There's got to be a
way to spell-check.
 
R

Ryan

In any case, there are probably some free components out there - there is
the usual risk you take with those. There are also plenty of places
selling fully functional spell checkers that include support, etc.

Do you have any recommendations?

Marina Levit said:
What development framework actually have support for spell checking? I
don't know of any. Please name some, preferably mainstream.

The .NET framework does not ship with a spell checking component. As you
can imagine, this would be a very complicated thing to write, especially
given internationalization, would MS be then expected to ship a version
that could spell check all the languages?
 
K

Kevin Yu [MSFT]

Hi Ryan,

Yes, currently there is no built-in spelling check in .NET framework.
Developing a spelling check function on your own requires dictionary and
other components, which seems to be very complex. In this case, it's better
to use a 3rd-party component to achieve this.

Kevin Yu
Microsoft Online Community Support

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================

(This posting is provided "AS IS", with no warranties, and confers no
rights.)
 
R

Ryan

Is building in spellcheck to applications really that unpopular? What do
you use, anyone?
 
R

Ryan

Just a follow up. I decided on using ComponentOne's spell check object. So
far have implemented it in 2 production applications and feedback has been
positive. A lot of the other objects that come with the package are pretty
handy as well.

Ryan
 
R

RobinS

Thanks for posting your solution. I'm sure others will find it helpful.
Robin S.
----------------
 
B

Bruce W. Darby

Ryan,

Just a word of caution. The company I work for uses Component One grid
objects in our software. Another company in the same industry, different
focus, also uses Component One's grid objects and both of us have to be very
careful about how we register the objects. Component One provided us with an
application to register their objects literally, while they provided a
method to the other company to register the files referentially. The two
methods do not work well together at all. We are trying to get Component One
to fix this issue, but so far they have been unresponsive. The closest we
have been able to come to a resolution to this issue is to get rid of the
Component One objects or have the two applications installed on two seperate
computers.

Bruce
 
R

Rad [Visual C# MVP]

Ryan,

Just a word of caution. The company I work for uses Component One grid
objects in our software. Another company in the same industry, different
focus, also uses Component One's grid objects and both of us have to be very
careful about how we register the objects. Component One provided us with an
application to register their objects literally, while they provided a
method to the other company to register the files referentially. The two
methods do not work well together at all. We are trying to get Component One
to fix this issue, but so far they have been unresponsive. The closest we
have been able to come to a resolution to this issue is to get rid of the
Component One objects or have the two applications installed on two seperate
computers.

Bruce

Hear hear! I've also had quite a number of problems with component one's
controls ... I've had enough and after evaluating Infragistics and
DevExpress for 2 months now I'm still unable to pick one horse and run with
it!

Here's a spell check component that looks interesting --plus comes with
full source code. Not free though

http://www.polarsoftware.com/products/spellchecker/index.asp
 
R

Ryan

Bruce,

Thanks for the warning. All the software I develop is only used in-house
(currently) so at the time being I don't forsee any conflicts with other 3rd
party software. I will definitely keep this issue in mind though.

Ryan
 

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