假设我跟随数据网格如下:
第1栏------------第2栏
1 -----------------------真
2 -----------------------假
3 -----------------------假
4 -----------------------假
5 -----------------------真
如果我想要显示" True"在"第2栏和第34页;进入textbox.text,怎么做呢?
需要帮助,
提前感谢
答案 0 :(得分:0)
Private Function CountTrueRows() As Integer
Dim count As Integer = 0
For i As Integer = 0 To DataGridView1.RowCount - 1
If DataGridView1.Item("Column2", i).Value = True Then
count += 1
End If
Next
Return count
End Function