1

嗨,我正在为我的 c# 应用程序创建拼写检查器。我正在使用 Microsoft.Office.Interop.Word;dll但有错误。

我已经在 VB.Net 中测试了我的代码并且它正在工作 fi9 但现在我必须使用 c# 并且我的代码中有错误

private void SpellOrGrammarCheck(bool blnSpellOnly)
    {

        try
        {
            object objWord;
            object objTempDoc;
            IDataObject iData;

            if (TextBox1.Text == "")
            {
                return;
            }

            objWord = new Microsoft.Office.Interop.Word.Application();
            objTempDoc = objWord.Documents.Add();
            objWord.Visible = false;

            objWord.WindowState = 0;
            objWord.Top = - 3000;

            Clipboard.SetDataObject(TextBox1.Text);

            objTempDoc.Content.Paste();
            objTempDoc.Activate();
            if (blnSpellOnly)
            {
                objTempDoc.CheckSpelling();
            }
            else
            {
                objTempDoc.CheckGrammar();
            }
            objTempDoc.Content.Copy();
            iData = Clipboard.GetDataObject();
            if (iData.GetDataPresent(DataFormats.Text))
            {
                TextBox1.Text = System.Convert.ToString(iData.GetData(DataFormats.Text, System.Convert.ToBoolean(null)));
            }
            objTempDoc.Saved = true;
            objTempDoc.Close();

            objWord.Quit();

            MessageBox.Show("The spelling check is complete.", "Spell Checker", MessageBoxButtons.OK, MessageBoxIcon.Information);

        }
        catch (System.Runtime.InteropServices.COMException)
        {
            MessageBox.Show("Microsoft Word must be installed for Spell/Grammar Check " + "to run.", "Spell Checker");

        }
        catch (Exception)
        {
            MessageBox.Show("An error has occurred.", "Spell Checker");

        }

    }

对象不包含文档的定义。这是我正在构建的错误。我在 c# 中成功包含了 Microsoft.Office.Interop.Word 的参考


我尝试了你的建议,虽然它很好,但对我没有用。现在它抛出了新的异常

objTempDoc = objWord.Documents.Add();

例外:方法 Add 没有重载采用“0”参数。

有什么建议吗?

4

2 回答 2

1

你有什么理由不使用aspell.net吗?Office 互操作是,嗯,有点繁琐。

于 2009-11-16T09:21:38.827 回答
0

C# does not support late binding. You must declare objWord as Microsoft.Office.Interop.Word.Application instead of object. Dito for objTempDoc (whatever type Documents.Add returns).

于 2009-11-16T09:53:03.230 回答