Board index » cppbuilder » Visual Speller

Visual Speller

Is there any documentation on the Visual Speller component that installs
with BCB 3?  Or some example of its usage?

John

 

Re:Visual Speller


Found the VSOCX.HLP file in a sub-directory of BCB.  Only problem is the
examples are mostly for VB.

Quote
John Gatti wrote in message <6ndjki$5...@forums.borland.com>...
>Is there any documentation on the Visual Speller component that installs
>with BCB 3?  Or some example of its usage?

>John

Re:Visual Speller


Here is a small example of what I have used.

        VSSpell1->CheckText = DBMemo1->Text;
        if (VSSpell1->ResultCode == 0) {
            DBMemo1->Text = VSSpell1->Text;
            StatusBar1->SimpleText = "Spell Check complete.";
        }

Quote
John Gatti wrote in message <6nea1g$6...@forums.borland.com>...
>Found the VSOCX.HLP file in a sub-directory of BCB.  Only problem is the
>examples are mostly for VB.

>John Gatti wrote in message <6ndjki$5...@forums.borland.com>...
>>Is there any documentation on the Visual Speller component that installs
>>with BCB 3?  Or some example of its usage?

>>John

Other Threads