miércoles, noviembre 13, 2024
Inicio VB.NET Contador de filas para un DataGrid

Contador de filas para un DataGrid

0

Como muchos sabrán en .Net no hay un método definido para contar las filas que muestra un DataGrid.

Hay miles de formas para contar las filas, ya sea contando las rows en la tabla del dataset, etc. Pero en este caso les enseño una función que hice para contar las filas de un DataGrid.

La función retorna un integer que es el conteo de las líneas, el nombre del DataGrid es dtgPrueba, ahí hay q reemplazarlo por el datagrid a utilizar.

Private Function cuentaLineasdtgPrueba() As Integer
Dim cont As Integer = 0
Dim indiceActual As Integer = 0
Dim indiceAnterior As Integer = -1
Dim indiceRID As Integer = Me.dtgPrueba.CurrentRowIndex

Try
If (Me.dtgPrueba.CurrentRowIndex <> -1) Then
If (Me.dtgPrueba.VisibleRowCount <> -1) Then
Me.dtgPrueba.CurrentRowIndex = 0

While (indiceActual <> indiceAnterior)
indiceAnterior = indiceActual

Me.dtgPrueba.CurrentRowIndex = Me.dtgPrueba.CurrentRowIndex + 1
indiceActual = Me.dtgPrueba.CurrentRowIndex
cont = cont + 1
End While

Me.dtgPrueba.CurrentRowIndex = indiceRID
End If
End If
Catch ex As Exception
Throw ex
End Try

Return cont
End Function

Dejar respuesta

Please enter your comment!
Please enter your name here