bool result = false;
WdExportFormat exportFormat = WdExportFormat.wdExportFormatPDF;
ApplicationClass app = null;
Document doc = null;
try
{
app = new ApplicationClass();
app.Visible = false;
doc = app.Documents.Open(@"D:\1.doc");
doc.SaveAs();
doc.ExportAsFixedFormat(@"D:\1.pdf", exportFormat);
result = true;
======================
就在执行app = new ApplicationClass()时,总是跳出office的安装程序,代码也停住了,虽然强制关掉安装窗口,代码仍能正常进行,但为什么会跳出安装窗口???
因为相关的 Office 组件没有安装,所以使用前需要先安装。Office 安装时可以指定某些组件在首次使用时安装。
哪些组件??
@北在北方: 你在安装程序里看安装列表,里面就列出了你没有安装的组件。