페이지 트리
메타 데이터의 끝으로 건너뛰기
메타 데이터의 시작으로 이동

이 페이지의 이전 버전을 보고 있습니다. 현재 버전 보기.

현재와 비교 페이지 이력 보기

버전 1 다음 »

특정 동작설정 기능을 VBA 코드로 실행 합니다. 


Syntax
Public Function ExecuteAction ( 
	actionName As String,
	param1 As String,
	param2 As String,
	param3 As String,
	param4 As String,
	param5 As String,
	param6 As String,
) As Long


Parameters

actionName

Type: String

실행할 동작설정 명

Name동작명
HyperLinkHyperLink 동작 (보고서 팝업, 시트 이동에 사용)
param1~6

Type: String

동작설정에 필요한 매개변수

Return Value

Type:  object

동작설정의 결과 값


Example
Sub MultiCRUDTest()

    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object
    mxmodule.xapi.MultiCRUD ThisWorkbook, "U1;U2"

    If mxmodule.xapi.LastErrorCode <> 0 Then
        mxmodule.xapi.MessageBox mxmodule.xapi.LastErrorMessage, vbInformation, "i-MATRIX"
    Else
        mxmodule.xapi.MessageBox "Complete." & vbCrLf & "Info" & mxmodule.xapi.ResponseData, vbInformation, "i-MATRIX"
    End If

End Sub
  • 레이블 없음