博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PowerDesigner 将Comment转化成NAME 脚本
阅读量:4948 次
发布时间:2019-06-11

本文共 1529 字,大约阅读时间需要 5 分钟。

Option   Explicit ValidationMode   =   True InteractiveMode   =   im_BatchDim   mdl   '   the   current   model'   get   the   current   active   model Set   mdl   =   ActiveModel If   (mdl   Is   Nothing)   Then       MsgBox   "There   is   no   current   Model " ElseIf   Not   mdl.IsKindOf(PdPDM.cls_Model)   Then       MsgBox   "The   current   model   is   not   an   Physical   Data   model. " Else       ProcessFolder   mdl End   IfPrivate   sub   ProcessFolder(folder) On Error Resume Next      Dim   Tab   'running     table       for   each   Tab   in   folder.tables             if   not   tab.isShortcut   then                   tab.name   =   tab.code + "(" + tab.comment + ")"                  Dim   col   '   running   column                   for   each   col   in   tab.columns                   if col.comment="" then                  else                        col.name=   col.code + "(" + col.comment + ")"                  end if                  next             end   if       next      Dim   view   'running   view       for   each   view   in   folder.Views             if   not   view.isShortcut   then                   view.name   =   view.code + "(" + view.comment + ")"            end   if       next      '   go   into   the   sub-packages       Dim   f   '   running   folder       For   Each   f   In   folder.Packages             if   not   f.IsShortcut   then                   ProcessFolder   f             end   if       Next end   sub

  

转载于:https://www.cnblogs.com/garysun90/p/6018785.html

你可能感兴趣的文章
win7任务栏还原为xp样式
查看>>
PYTHON_3和2
查看>>
json数组的取值方法
查看>>
2019-7-15 vue01day
查看>>
SELECT LOCK IN SHARE MODE and FOR UPDATE
查看>>
Perl/Nagios – Can’t locate utils.pm in @INC
查看>>
目录导航「深入浅出ASP.NET Core系列」
查看>>
Git常用命令拾遗
查看>>
Canvas的drawImage方法使用
查看>>
自定义适用于手机和平板电脑的 Dynamics 365(四):窗体脚本
查看>>
阴影效果参考网址
查看>>
华为交换机端口镜像
查看>>
简易爬虫(爬取本地数据)
查看>>
一位菜鸟的java 最基础笔记
查看>>
python 进程间通信
查看>>
字符串和编码
查看>>
servlet(一)
查看>>
异常实验
查看>>
python \r与\b的应用、光标的含义
查看>>
深拷贝 vs 浅拷贝 释放多次
查看>>