1

目前我正在使用 Microsoft Word 标签打印实用程序从我的 .NET 应用程序中打印标签。我正在使用以下代码打印标签。

            Word.Application oWord;
            Word._Document oDoc;

            oDoc = oWord.Documents.Add();
            var a = oWord.MailingLabel.CreateNewDocument("30 Per Page", "", Type.Missing, false, Type.Missing, Type.Missing, Type.Missing);
            oWord.Visible = false;
            var table = a.Content.ConvertToTable().Tables[1];
            var innertable = table.Columns[1].Cells[1].Range.ConvertToTable();
            innertable.Columns[1].Cells[1].Range.Bold = 1;

            innertable.Columns[1].Cells[1].Range.Text = "sdadad";
            innertable.Columns[1].Cells[1].Range.Font.Bold = 1;
            innertable.Columns[1].Cells[1].Range.Font.Color = Word.WdColor.wdColorBlue;
            innertable.Columns[1].Cells[1].Range.Font.Size = 15F;
            innertable.Columns[1].Cells[1].Range.Font.Name = "Verdana";
            innertable.Rows.Add();
            innertable.Columns[1].Cells[2].Range.Text = "fsdfsdfsdf";
            innertable.Columns[1].Cells[2].Range.Font.Bold = 0;
            innertable.Columns[1].Cells[2].Range.Font.Color = Word.WdColor.wdColorBrown;
            innertable.Columns[1].Cells[2].Range.Font.Size = 12F;
            innertable.Columns[1].Cells[2].Range.Font.Name = "Segoe UI";

            var docs=oWord.Documents;
            oWord.Visible = true;

现在的问题是这里创建了两个文档。但我只想打开带有标签的文档。

非常感谢您提前...!

4

2 回答 2

0

请删除这些行:

Word._Document oDoc;
oDoc = oWord.Documents.Add();

因为他们在 Word 应用程序中创建新的标准文档。您不会在代码中的任何地方使用它,因此您似乎不需要它。

编辑MailingLabel document我认为在没有打开任何其他文档的情况下无法添加。因此,另一个建议是oDoc document在创建 MailingLabel 后关闭。尝试以下操作:

//after this line
oWord.Visible = false;
//try to add
oDoc.Close();
于 2013-08-05T10:47:36.730 回答
0

我已经使用以下行手动关闭了我的标准文档:

oDoc.Close();

谢谢...!!

于 2013-08-05T11:09:21.993 回答