关于嵌入Word的问题,执行document.save()后总是弹出提示保存dot文件不知道怎么解决啊Word.ApplicationClass wd = new Word.ApplicationClass();
object fileName = “c:\temp.doc”;
object newTemplate = false;
object docType = 0;
object readOnly = false;
object isVisible = true;
document = wd.Documents.Add(ref fileName, ref newTemplate, ref docType, ref isVisible);document.save(); 执行这句后,提示保存一个dot文件平常打开word文件是不会提示保存dot文件的啊