vote up 2 vote down star
2

I have an In-house windows form app that I would like to use Spell Checking in. Everyone has Office 2007 installed so I shouldn't have an issue there but I am having trouble getting this to fully work.

Here is what I have:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Word = Microsoft.Office.Interop.Word;
using System.Reflection;

namespace Refraction.Spelling
{
    public static class SpellCheckers
    {
        public static string CheckSpelling(string text)
        {
            Word.Application app = new Word.Application();
 object nullobj = Missing.Value;
                object template = Missing.Value;
                object newTemplate = Missing.Value;
                object documentType = Missing.Value;
                object visible = true;
                object optional = Missing.Value;
            object savechanges = false;
            Word._Document doc = app.Documents.Add(ref template, ref newTemplate, ref documentType, ref visible);

        doc.Words.First.InsertBefore(text);
        Word.ProofreadingErrors errors = doc.SpellingErrors;

        var ecount = errors.Count;
        doc.CheckSpelling(ref optional, ref optional, ref optional, ref optional, 
            ref optional, ref optional, ref optional, ref optional, ref optional, 
            ref optional, ref optional, ref optional);
        object first = 0;
        object last = doc.Characters.Count - 1;
        var results = doc.Range(ref first, ref last).Text;
        doc.Close(ref savechanges, ref nullobj, ref nullobj);
        app.Quit(ref savechanges, ref nullobj, ref nullobj);

        return results;
    }
}

}

I use this like so:

memDirectionsToAddress.Text = SpellCheckers.CheckSpelling(memDirectionsToAddress.Text);

Now this successfully pops up the SpellCheck Dialog from Word and detects any misspelled wordsbut I cannot get it to make the corrections in the WinForm app.

Also, it leaves this "Shell" of a Word Doc open with the corrected text. How do I not show that or at least make it go away?

Two things:

  • First, though the "shell" closes it Flashes everytime. Any solutions to that?
  • Second, the Spell Check Dialog does not appear on TOP, what can I set to correct that?

Thanks

flag

Additional question: Is there any reason NOT to make this STATIC? – Refracted Paladin Aug 31 at 16:30
If you don't make it static, you could keep references to a specific document and/or the word application. That would help you avoid the startup costs of a new app or document. (You may be able to keep a document open but invisible, by playing with the Visible property or the app and always starting a new app.) – John Fisher Aug 31 at 17:46
the problem is that if I don't do a app.Close() at the end then a Shell of Word stays open.... – Refracted Paladin Aug 31 at 18:11
I had to change object visible = true; and add app.ShowMe(); The answer below helped guide me, that is why I accepted it. – Refracted Paladin Sep 10 at 19:05

1 Answer

vote up 1 vote down check

The next steps would be:

  1. Pull the corrected text back out of the document.
  2. Close the document. (If there's only one document open in Word, you may want to close or hide the Word application.)
  3. Return the corrected text to the calling function.

More info:

link|flag
Thanks, so it actually corrects the text in the "hidden" word doc and then I need to grab that. Any hints on how I grab the text back out? – Refracted Paladin Aug 31 at 16:30
Use the selection object. Do a "select all", then read the text out of the selection. – John Fisher Aug 31 at 16:36
see my comment's on Question for FULL answer – Refracted Paladin Sep 10 at 19:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.