public static void ImportInformationDoc()
{
var app = new Word.Application();
object template = @"C:\Post.dot";
Object newTemplate = Type.Missing;
Object documentType = Type.Missing;
Object visible = Type.Missing;
Word._Document mail = app.Documents.Add(ref template,
ref newTemplate,
ref documentType,
visible);
mail.SaveAs(@"C:\new.doc");
mail.Close();
app.Quit();
}
您好!我无法弄清楚如何。如何从post.dot再次插入new.doc数据。使其内容在两个页面上相同。
对于示例,在post.dot中:
在第一页:“Hello world”。
在new.doc中:
在第一页:“Hello world”。
在第二页:“Hello world”。