DataGridView와 값 비교 본문

[PL]/VB & VB.NET

DataGridView와 값 비교

객과 함께. 2010. 9. 9. 20:00

 

 Function FindNoDatabase(ByVal FNo As String)

 

        Dim findDB As Boolean
        Dim i As Integer
        Dim GridValue As String

 

        For i = 0 To DataGridView1.RowCount - 1
            GridValue = DataGridView1.Rows(i).Cells(0).Value
            If FNo <> GridValue Then
                findDB = False
            Else
                findDB = True
                Exit For
            End If
        Next

        Return findDB
End Function

 데이타 그리드와 값을 비교 할 때

'[PL] > VB & VB.NET' 카테고리의 다른 글

비주얼베이직 유니코드 스트링 처리 방법  (0) 2011.02.08
DataGridView활용  (0) 2010.09.15
MaskedTextBox 값 확인 여부  (0) 2010.09.09
dll파일 적용방법  (0) 2010.08.14
명령줄 컴파일 하기.  (0) 2010.08.13