Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagevb
themeEmacs
titleExample
linenumberstrue
Sub MoveWindow()
    Dim mxmodule As Object
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6iMATRIX.ExcelModule").Object

    result = mxmodule.xapi.MovePortal(100, 100, 200, 300)

    '오류 확인
    If result = False Then
        MsgBox "fail"
    Else
        MsgBox "success"
    End If
    
End Sub

...