페이지 트리

버전 비교

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

...

코드 블럭
languagevb
themeEmacs
titleExample
linenumberstrue
'==========================================================================
'서버에 file을 upload 합니다.
'server/reports/folderxxx 에 생성됩니다.
'==========================================================================
Public Sub UploadFileTest()
    Dim mxmodule As Object
    
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object
    
    result = mxmodule.xapi.UploadFile("c:\test3.csv", "folder1")
     
    '첫번째오류 컬럼의확인
값을 사용     If result = False Then
        MsgBox "upload fail " & mxmodule.xapi.LastErrorMessage
    Else
        MsgBox "upload success"
    End If
         
End Sub