첫 번째 단계는 테이블 생성 문을 powerdesginer로 가져오는 방법을 찾는 것입니다
두 번째 단계는 정렬 및 색상 지정입니다
3단계 테이블 이름 동기화 단계 모니터가 2개라면 2개의 모니터를 열 수 있습니다.
하나는 테이블 이름을 보려면
알 수 없는 테이블 이름을 완성하세요
다른 하나는 데이터를 보세요(모두 추측에 기초함)
때때로 PHP html 코드도 살펴봐야 합니다
ps:comment 이름 변경
Option Explicit ValidationMode = True InteractiveMode = im_Batch Dim 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 If Private 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.comment Dim col ' running column for each col in tab.columns if col.comment="" then else col.name= 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.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
위 내용은 시스템을 포함하여 원래 시스템에 기능을 추가하는 방법과 어떤 측면을 소개하는지, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.