views:

82

answers:

1

Is there a spell check in Windows (like in Mac OS X)? If yes, is there any way to use on a richedit on delphi 7?

I've been trying to find that answer on the internet but so far no answer.

code is appreciated. thanks!

+5  A: 

There is no Built in Spell Check in Windows. Applications are required to implement there own. When it comes to Delphi you have several options, some of which include:

Addict is one of the more complete solutions, but I have used HunSpell successfully where Addict was not available. Addict and DevExpress are both compiled into the application.

Robert Love
hmmm. they are all external DLLs. I was trying to find something that doesn't add DLLs and other files to my app (an app that is a standalone exe, portable and supper fast). I guess it can't be done then. thanks tho for the information
Uri
I've never done it and there may be pitfalls, but there are ways to bundle a dll inside an .exe (as a resource perhaps?) and then extract it at runtime if needed...) These days, you might fall afoul of various security features though...
Robert Frank
Addict is not an external DLL.
Robert Love
+1 for addict, and it's not a DLL. It works with lots of 3rd-party editor VCLs. And it can even pull custom dictionary words from the MSOffice dictionary. Lots of free international dictionaries available, even UK English vs. USA English.
Chris Thornton