특정 Dataset 을 갱신합니다.
Syntax
public void RefreshDataset( String dsName, bool isWait )
Parameters
dsName |
---|
Type: String
Refresh 할 데이터셋 명
조회할 데이터셋이 여러개 일경우 , 구분으로 처리
예) DS1,DS2 : DS1,DS2 동시실행
DS1@DS2 : DS1→DS2 순차 실행
isWait |
---|
Type: bool (Optional default : false)
true : 동기 실행 (Refresh 완료시까지 대기)
false : 비동기 실행
Returns
없음
데이터 입력 폼 생성 예제
'========================================================================== '특정 Dataset 을 갱신합니다. '========================================================================== Public Sub RefreshDataset(ByVal Target As Range) Dim mxmodule As Object Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object mxmodule.xapi.RefreshDataset("DS1,DS2", true) 'DS1, DS2 동시 실행 End Sub