码迷,mamicode.com
首页 > Windows程序 > 详细

C#打开word(通过程序集,组件的话会有版本问题)

时间:2014-12-10 16:08:40      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:io   on   文件   问题   log   cti   ef   new   res   

OpenFileDialog P_GetFile = new OpenFileDialog(); //创建打开文件对话框对象
DialogResult P_dr = P_GetFile.ShowDialog(); //显示打开文件对话框
object oMissing = System.Reflection.Missing.Value;
if (P_dr == DialogResult.OK) //是否单击确定
{
wordApp = new MSWord.Application();
wordApp.Visible = true;
object obj = (object)(P_GetFile.FileName);
wordApp.Documents.Open(ref obj,ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
}

C#打开word(通过程序集,组件的话会有版本问题)

标签:io   on   文件   问题   log   cti   ef   new   res   

原文地址:http://www.cnblogs.com/lemeng/p/4155509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!