vote up 1 vote down star

One of the requirements for the twitter client we are developing for the community is a spellcheck component. What are some of the spellcheck components/systems you have used in applications and what was your experience using it?

flag

7 Answers

vote up 7 vote down check

Addict Component Suite is the most complete one for Delphi, but it's not free.

But I think you are looking for freeware for your twitter utility, I have used LS Speller for free project and worked fine with me, it's based on ISpell, so you can update it with newer dictories.

But there's no D2009 update yet, and seems it's not actively developed.

Another option to use the MS Word built in dictionary.

link|flag
Isn't "Addictive" the name of the company, and "Addict" the name of the product? – Argalatyr Apr 5 at 19:53
You are right, I modified it :-), thanks for the correction – Mohammed Nasman Apr 6 at 5:38
vote up 0 vote down

If you can guarantee that your client always has MS Word installed, I'd suggest MS Word's built in spellchecker too with OLE automation.

link|flag
vote up 1 vote down

You can use Aspell (Win32 version: http://aspell.net/win32/).

In your Delphi project you could use the command line pipe interface: aspell pipe:

C:\Programme\Aspell\bin>aspell pipe
@(#) International Ispell Version 3.1.20 (but really Aspell 0.50.3)

hello
*

world
*

helllo
& helllo 18 0: hello, Helli, hell lo, hell-lo, hell, Heall, hallo, he'll, hullo,  Heller, heller, hellos, Jello, jello, Halli, Holli, hallow, hollow

wourld
& wourld 12 0: world, would, wold, whorled, wield, weld, wild, wooled, whirled, worlds, woulds, word
link|flag
vote up 1 vote down

In the blog comments Ken just suggested LS Spell which uses the ISpell dictionaries. It is for Delphi 5, 6 and 7, so as long as it doesn't make explicit use of other string types might work fine.

link|flag
vote up 1 vote down

I've been using Addict and have been pretty happy with it. I've used it mainly in conjunction with WPTools for mail merge & emailing.

link|flag
vote up 0 vote down

I use the TRichView component as my "text editor" in my Delphi application.

It supports many spellcheckers that work with Delphi. You may want to compare the ones that it supports:

http://www.trichview.com/features/spellcheck.html

link|flag
vote up 0 vote down

DevExpress VCL also has a spell checker, though I have only played with a bit. I also own Addict which I use in software projects.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.