|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
对于update操作,event中依次记录旧行,新行的值。剧本|快速体例*****************************************************************************
文件:Setcolorofentitiesshortcut.vbs
版本:1.0
版权:floodzhu(floodzhu@hotmail.com),2005.1.6
功效:遍历观点模子,把Entities的快速体例的色彩设置为黄色。
*****************************************************************************
dimfs,f
setfs=CreateObject("Scripting.FileSystemObject")
setf=fs.CreateTextFile("C:PowerDesigner_vbs.log")
dimindex
index=0
dimmodel
setmodel=ActiveModel
If(modelIsNothing)Then
MsgBox"以后没有举动的模子。"
ElseIfNotmodel.IsKindOf(PdCDM.cls_Model)Then
MsgBox"以后模子不是观点模子。"
Else
Viewmodel
MsgBoxindex&"个实体的快速体例的色彩被设置。"
EndIf
*****************************************************************************
函数:View
功效:递回遍历
*****************************************************************************
subView(folder)
dimnode
foreachnodeinfolder.Entities
ifnode.IsShortCutthen
Visitnode
endif
next
对子目次举行递回
dimsubFolder
foreachsubFolderinfolder.Packages
ViewsubFolder
next
endsub
*****************************************************************************
函数:Visit
功效:处置节点
*****************************************************************************
subVisit(node)
dimsym
foreachsyminnode.symbols
sym.FillColor=rgb(255,255,128)
index=index+1
f.writelinesym.name&"●"&sym.FillColor
next
endsub这能找出所有错误的99.99%。它不能找出的是仅仅涉及数据文件的损坏(这很不常见)。如果你想要检查一张表,你通常应该没有选项地运行myisamchk或用-s或--silent选项的任何一个。 |
|