'***************************************************************************** '文件:delete useless data items.vbs '版本:1.0 '版权:floodzhu ([email protected]),2005.1.6 '功能:遍历概念模型,把无用的data items删除。 '***************************************************************************** dim index index = 0
dim model 'current model set model = activemodel
if (model is nothing) then msgbox "当前没有活动的模型。" elseif not model.iskindof(pdcdm.cls_model) then msgbox "当前模型不是概念模型。" else view model msgbox index & "个无用字段被删除。" end if
'***************************************************************************** '函数:view '功能:递归遍历 '***************************************************************************** sub view(folder) dim item for each item in folder.dataitems if not item.isshortcut then visit item end if next
'对子目录进行递归 dim subfolder for each subfolder in folder.packages view subfolder next end sub
'***************************************************************************** '函数:visit '功能:处理节点 '***************************************************************************** sub visit(node) if node.usedby="" then node.delete index = index + 1 end if end sub