페이지 트리

버전 비교

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

...

코드 블럭
languagevb
titleSyntax
public int GetDatasetRowCount(
	string datasetName
)


Parameters

datasetName

Type: String

출력 건수를 리턴 할 datasetName

...

코드 블럭
languagevb
themeEmacs
titleExample
linenumberstrue
Sub GetDatasetRowCount()
    Dim rowCnt As Integer
    Dim mxmodule As Object
    Set mxmodule = Application.COMAddIns.Item("iMATRIX6.ExcelModule").Object
 
    '입력된 Dataset의 조회된 데이터 건수
    rowCnt = mxmodule.xapi.GetDatasetRowCount("DS")

    '데이터 건수가 -1이면 오류, 데이터셋명 확인
    If (rowCnt > -1) Then
        mxmodule.xapi.MessageBox rowCnt & "건 조회출력", VbMsgBoxStyle.vbInformation
    Else
        mxmodule.xapi.MessageBox "데이터셋을 확인하세요.", VbMsgBoxStyle.vbExclamation
    End If
End Sub