当前位置: 代码迷 >> VBA >> 怎么查找Word文档中是否使用了控件
  详细解决方案

怎么查找Word文档中是否使用了控件

热度:8933   发布时间:2013-02-26 00:00:00.0
如何查找Word文档中是否使用了控件
Selection.InlineShapes.AddOLEControl ClassType:="Forms.CommandButton.1"
  Selection.InlineShapes.AddOLEControl ClassType:="Forms.ListBox.1"

例如WORD文档中添加了以上两个控件,通过什么方式能查找到?

------解决方案--------------------------------------------------------
VB code
Dim doc As DocumentSet doc = ActiveDocumentDim shp As InlineShapeFor Each shp In doc.InlineShapes    MsgBox shp.TypeNext
  相关解决方案