[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

Question
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

7.8

spell check macro for ms word

Asked by ragur in Microsoft Word, Programming Languages, Visual Basic Programming

Tags: spell, checker, word, macro

In the code you have suggested below for spell check macro ...
I need to do some modifications according to following requirements
1) I have my own dictionary file(a file that contains correct spellings -each word in a line in sorted order)
     - TELL me whether the ' GetSpellingSuggestions'  method checking the existing dictionary to give correct spelling?  what can be alternative solution for comparing words with MY OWN DICTIONARY(WHICH IS YET ANOTHER TXT/DOC FILE)
2)  I need to implement spell check macro for a different language 'Kannada" , an indian language(the fonts are either Truetype fonts or in UTF-8 format.)
 - Also please tell me How do i change the LanguageID to recognize Kannada font???
3) Let the program give some suggestions as we get in MS WORD 'spelling and Grammar checking' tool, so that  I can select the word of my choice to replace the word in text file
4)totally i need  a macro that checks spellings for all the words in a word file and replaces mis-spelt words in the same file ... but for "kannada script"


 
 
   

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
'********* START THE SPELLING CHECK LOOP ********************
    Do While myDoc.SpellingErrors.Count >= 1
    
    Set SpellSuggs = GetSpellingSuggestions(myDoc.SpellingErrors(1).Text)
    
    If SpellSuggs.Count >= 1 Then
        myDoc.SpellingErrors(1).Text = SpellSuggs(1)
    Else
        myDoc.SpellingErrors(1).NoProofing = True
    End If
    
    Loop
'********* END THE SPELLING CHECK LOOP ***********************
Related Solutions: batch spell check correction
[+][-]06/15/08 10:09 AM, ID: 21789063Accepted Solution

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

About this solution

Zones: Microsoft Word, Programming Languages, Visual Basic Programming
Tags: spell, checker, word, macro
Sign Up Now!
Solution Provided By: ragur
Participating Experts: 0
Solution Grade: A
 
 
Loading Advertisement...
20091111-EE-VQP-89 / EE_QW_Related_20080208