获取datagridview中的最大值

时间:2017-01-04 05:49:31

标签: vb.net

是否可以在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

1 个答案:

答案 0 :(得分:0)

试试这个,

 If IsNumeric(rws.Cells(1).Value) Then
    If Max < rws.Cells(1).Value Then Max = rws.Cells(1).Value
 End If