Welcome to Dream.In.Code
Getting C# Help is Easy!

Join 135,951 C# Programmers for FREE! Get instant access to thousands of C# experts, tutorials, code snippets, and more! There are 2,690 people online right now. Registration is fast and FREE... Join Now!




Spell Checker Function Using Office 2003 - Word Library

 
Reply to this topicStart new topic

Spell Checker Function Using Office 2003 - Word Library

Johnson_34
23 May, 2008 - 04:00 PM
Post #1

New D.I.C Head
*

Joined: 23 May, 2008
Posts: 1

I wrote a spell checker function, however I could not adjust its language.
Although it has an adjustment part : object objLanguage = Word.WdLanguageID.wdEnglishUS; , it is not working.
I live in Turkey and it works Turkish.

Can you help me ? Thanks a lot.

CODE
public string[] Suggest2(string word)

{

object nothing = Missing.Value;

object objLanguage = Word.WdLanguageID.wdEnglishUS;

//ask MS Word to spell check the given word

bool spelledright = this.application.CheckSpelling(

word,

ref nothing,
ref nothing,
ref (object)objLanguage,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing
);

if (spelledright) return null;

//if word is spelled wrong, ask MS Word to suggest

//other similar words.

ArrayList words = new ArrayList();

SpellingSuggestions suggestions =

this.application.GetSpellingSuggestions(

word,

ref nothing,
ref nothing,
ref (object)objLanguage,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing,
ref nothing
);

//add the suggestions to an ArrayList temporarily

foreach (SpellingSuggestion suggestion in suggestions)

words.Add(suggestion.Name);

suggestions = null;

//return the suggestions as a string array

return (string[])words.ToArray(typeof(string));

}



This post has been edited by Johnson_34: 24 May, 2008 - 03:40 AM
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/1/08 09:06AM

Live C# Help!

C# Tutorials

Reference Sheets

C# Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month