如题.
有没有人做个类似的操作?先谢了!!

解决方案 »

  1.   

    呵呵 你去微软网站搜索word对象模型吧
    偶虽然也要用 可是最近没时间了哈 ^^
      

  2.   

    需要用到COM的WORD组件,
    在项目引用中加入OFFICE组件,
    在类中加入这样的代码:
    Word.ApplicationClass app = new Word.ApplicationClass();
    Word.DocumentClass docu = app.Documents.Add(ref obj,ref obj,ref obj,ref obj);
    Word.InlineShapes shapes = docu.InlineShapes;
    这个shapes就是WORD中的图片集合.你可以修改他.
      

  3.   

    刚才找到这个帮助,内容太多了看的我眼花.....
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_vsto2003_ta/html/wordobject.asp非常感谢 uniqueambrosini(鹰目骅道) 
    试试看!