Latest News

  • Super Tower Defense Game
    Mar 10, 2010

    New to the games section is the new Super Tower Defense game. Defend your base from the ever advancing army of tanks, buggies...

  • New Rich Text Editor User Control
    Feb 19, 2010

    By popular request, here we present a re-usable User Control containing the Liquid RichTextBox along with the most common formatting functions included.

  • Silverlight 3 Controls V5.2.7 Released
    Feb 19, 2010

    This release includes several fixes for issues raised in the forum. The main improvement is to the RichTextBox which now provides access and methods to the document elements allowing...

  • Super Shoot Em Up Game
    Feb 04, 2010

    Added to the games section is the new Super Shoot 'Em Up game. Take control of a tank with your aim being to blow up your opposing tanks and collect all the powerups.

  • Silverlight 3 Controls V5.2.6 Released
    Feb 04, 2010

    This release includes some minor fixes for several forum posts. Please see the notes on the download page for full details on what has changed.

gmargabanthu
gmargabanthu
How to Add Words to the en_US_Dic.txt Dictionary? Posted: Jan 14, 2010
 

How to Add Words to the en_US_Dic.txt Dictionary?

 
 
dan
dan
RE: How to Add Words to the en_US_Dic.txt Dictionary? Posted: Jan 25, 2010
 

Hi,


The dictionary supplied is simply for demonstration purposes and shouldn't be edited unless you know what your doing.  In general if you want to add custom words you should use the AddCustom() method of the SpellChecker object which allows you to add custom words.


Please see the full demo which implements custom words if you need to see how to do this:


http://www.vectorlight.net/demos/richtextbox.aspx


Thanks!

 
 
gmargabanthu
gmargabanthu
RE: How to Add Words to the en_US_Dic.txt Dictionary? Posted: Jan 27, 2010
 

Thanks Dan.


But, I have a need to customize the dictionary for the Medical Profession ...which means addition of 300,000 words. Calling the AddCustom() 300,000 times does not work. Also, AddCustom needs to be called for every instance of the richtextbox control on the same form.


Any Thoughts!

 
 
dan
dan
RE: How to Add Words to the en_US_Dic.txt Dictionary? Posted: Jan 30, 2010
 

Hi,


The AddCustom() method is a member of the SpellChecker object thus you would add the words once to the your spell checker instance and share this between all your RichTextBox instances.


Thanks!