在OOB模式下,导出Word
如果用网上例子例子,可以成功,代码如下:
dynamic word = AutomationFactory.CreateObject("Word.Application");
word.Visible = true;
dynamic doc = word.Documents.Add();
string insertText = "Hello Word from Silverlight 4!";
dynamic range = doc.Range(0, 0);
range.Text = insertText;
但如果 导入一个word模版,然后在指定的位置填入文字信息(参照这个http://blog.csdn.net/codefighting/article/details/7432939,就会出错
先是Micosoft Word 已停止工作 ,然后再 word.Visible = true; 显示 远程过程调用失败。 (异常来自 HRESULT:0x800706BE) ,求解决!