페이지 트리

버전 비교

  • 이 줄이 추가되었습니다.
  • 이 줄이 삭제되었습니다.
  • 서식이 변경되었습니다.

...

typemember의미
stringFolderCode현재 Report의 FolderCode
stringFullName현재 Report의 Full 경로
stringCode현재 Report의 Code
stringName현재 Report의 이름


Example


코드 블럭
languagevb
themeEmacs
titleExample
linenumberstrue
Sub GetWorkbookCode()

...

    Dim mxmodule As Object
    Dim ReportCode

...


    Dim mxmodule As Object
    Dim ReportCode
    Set mxmodule = Application.COMAddIns.Item("iMATRIX.ExcelModule").Object

...


    ReportCode = mxmodule.xapi.ActiveBook.Code

...



    Debug.Print ReportCode

...


End Sub