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;

問題は、ここで 2 つのドキュメントが作成されることです。しかし、ラベル付きのドキュメントのみを開きたいです。

よろしくお願いします...!!

4

2 に答える 2

0

次の行を削除してください。

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

Word アプリケーションで新しい標準ドキュメントを作成するとき。コード内のどこでも使用しないため、必要ないようです。

編集MailingLabel document他の文書を開かないと追加できないと思います。したがって、もう 1 つの提案は、oDoc documentMailingLabel を作成した後で を閉じることです。次のことを試してください。

//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 に答える