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,
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
Hi,
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