페이지 트리

버전 비교

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

...

코드 블럭
languagevb
themeEmacs
title데이터 입력 폼 생성 예제
linenumberstrue
'==========================================================================
'특정 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