Hi, I'm trying to configure my app to use the WebSpellChecker - it works fine except I want to use the English-Uk dictionary not the generic English one. Im new to this so please be patient with me. I have followed the steps here: i.e my code behind page has:
Public Property Dictionary() As String Get Me.WebSpellChecker1.Dictionary = Server.MapPath(".") + "/dictionaries/uk-english-v2-whole.dict" End Get Set(ByVal value As String) End Set End Property Public Property LanguageParser() As LanguageType Get Me.WebSpellChecker1.SpellOptions.LanguageParser = LanguageType.English End Get Set(ByVal value As LanguageType) End Set End Property
I have also included the import statement and copy the dictionary to the folder above - but it still uses the generic dictionary - can anybody help?
Hi,
Thanks for the links. Those are what I was looking for exactly. After this now I have to finalize my product to the customer and just need the final help. If I use MIXED dictionary, one existing and one user created, is this possible: because I need to use the Add capability of the spell checker, and I understood that this is only possible if I use userDefinedDictionaries.
Thanks in advance. I am getting there ..
HI,
Here is a help link on changing the dictionary
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2009.1/CLR3.5/html/WebSpellChecker_Specify_a_Different_Dictionary_for_WebSpellChecker.html
Here is a kb article on deployment
http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.aspx?ArticleID=10115
Can you please provide me full steps to switch from us-english to uk-english dictionary?
Also I need to deploy this product, do I need to include additional files or all the dictionaries are
embedded into dlls.
Best Regards
G
your Get logic is wrong - with a property your Get returns a value. so move your me.webspellchecker1.dictionary logic down to your Set.
Keep in mind you need to update your property. Your code is just a property declaration.
This post might help you :http://forums.infragistics.com/forums/t/7187.aspx