使用C#表单

时间:2017-03-17 19:18:26

标签: c# ms-word office-interop

我正在尝试在C#中创建一个应用程序。当按下单选按钮时,我想打开Microsoft Word文档(发票)并用我的表单中的文本替换一些文本。 Word文档还包含一些带文本的文本框。

我已尝试实现此链接Word Automation Find and Replace not including Text Boxes中编写的代码,但是当我按下单选按钮时,会出现一个窗口,询问“使文档可读的编码”,然后Word文档打开,它就是充满黑色三角形和其他东西,而不是我的发票初始模板。

我的发票如何照顾: & how it looks after

这是我尝试过的:

    string documentLocation = @"C:\\Documents\\Visual Studio 2015\\Project\\Invoice.doc";
    private void yes_radioBtn_CheckedChanged(object sender, EventArgs e)
    {
        FindReplace(documentLocation, "HotelName", "MyHotelName");
        Process process = new Process();
        process.StartInfo.FileName = documentLocation;
        process.Start();
    }

    private void FindReplace(string documentLocation, string findText, string replaceText)
    {
        var app = new Microsoft.Office.Interop.Word.Application();
        var doc = app.Documents.Open(documentLocation);
        var range = doc.Range();

        range.Find.Execute(FindText: findText, Replace: WdReplace.wdReplaceAll, ReplaceWith: replaceText);

        var shapes = doc.Shapes;
        foreach (Shape shape in shapes)
        {
            var initialText = shape.TextFrame.TextRange.Text;
            var resultingText = initialText.Replace(findText, replaceText);
            shape.TextFrame.TextRange.Text = resultingText;
        }

        doc.Save();
        doc.Close();
        Marshal.ReleaseComObject(app);
    }

1 个答案:

答案 0 :(得分:3)

因此,如果您的单词模板在每次基本上都是相同的

  • 复制模板
  • 在模板上工作
  • 以所需格式保存
  • 删除模板副本

您要在word文档中替换的每个部分都必须为该位置插入书签(在区域中输入文本的最简单方法)。

我总是创建一个功能来完成这个,我最终传入路径 - 以及所有文本来替换我的文档内书签。函数调用有时会变长,但它对我有用。

Application app = new Application();
Document doc = app.Documents.Open("sDocumentCopyPath.docx");


if (doc.Bookmarks.Exists("bookmark_1"))
        {
            object oBookMark = "bookmark_1";
            doc.Bookmarks.get_Item(ref oBookMark).Range.Text = My Text To Replace bookmark_1;
        }
        if (doc.Bookmarks.Exists("bookmark_2"))
        {
            object oBookMark = "bookmark_2";
            doc.Bookmarks.get_Item(ref oBookMark).Range.Text = My Text To Replace bookmark_2;
        }

                doc.ExportAsFixedFormat("myNewPdf.pdf", WdExportFormat.wdExportFormatPDF);

((_Document)doc).Close();
((_Application)app).Quit();

除非您想将所有值传递到函数中,否则此代码应启动并运行。

编辑:如果您需要更多示例我也在博客文章中工作,所以如果对您的用例不够清楚,我会有更多详细信息。