是否可以在datagridview中获取仅包含数字的最大值?
这是代码。它获得了所有的价值。
Dim Max As Integer = 0
For Each rws As DataGridViewRow In dgvItems.Rows
If Max < rws.Cells(1).Value Then Max = rws.Cells(1).Value
Next
答案 0 :(得分:0)
试试这个,
If IsNumeric(rws.Cells(1).Value) Then
If Max < rws.Cells(1).Value Then Max = rws.Cells(1).Value
End If