C#中如何实现单击一个按钮,然后新建Word文档的功能?
展开全部
先添加引用 COM组件里的Word
Microsoft.Office.Interop.Word.Application app = new Application();
Microsoft.Office.Interop.Word.Document doc = new Document();
string path = "你的WORD文档的路径";
if (System.IO.File.Exists(path))//如果文档存在则删除
{
System.IO.File.Delete(path);
}
object mis=System.Reflection.Missing.Value;
doc = app.Documents.Add(ref mis, ref mis, ref mis,ref mis);
//这里你可以写对文档的操作,比如加入一些字符串
doc.Save();
doc.Close();
app.Quit();
//创建完成
Microsoft.Office.Interop.Word.Application app = new Application();
Microsoft.Office.Interop.Word.Document doc = new Document();
string path = "你的WORD文档的路径";
if (System.IO.File.Exists(path))//如果文档存在则删除
{
System.IO.File.Delete(path);
}
object mis=System.Reflection.Missing.Value;
doc = app.Documents.Add(ref mis, ref mis, ref mis,ref mis);
//这里你可以写对文档的操作,比如加入一些字符串
doc.Save();
doc.Close();
app.Quit();
//创建完成
更多追问追答
追问
上面的Using是什么?
string path = "你的WORD文档的路径";
如果是桌面的话怎么写?
追答
不用using,我在代码里写的时候已经带上了命名空间。
关于文件的路径,不管文件在哪,你都可以右键属性来查看它的路径。
不一定每个人的桌面路径都是一样的,我的桌面路径是:C:\Users\Administrator\Desktop
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |