How to Count Rows of DataGrid in C#.NET

12/01/2006 - 13:49 por Hy Chanhan | Informe spam
Hi,
I have some problem with DataGrid in C#.NET
I want to count Rows of DataGrid, How should i coding?
Please help me!
Thanks,
 

Leer las respuestas

#1 Guillermo guille
12/01/2006 - 21:13 | Informe spam
¿Has probado con la propiedad Items?

Have you tried with the Items property?

foreach (DataGridItem item in ItemsGrid.Items)
{
Label1.Text += "<br>" + item.Cells[0].Text +
" " + item.Cells[1].Text +
" " + item.Cells[2].Text;
}

http://msdn.microsoft.com/library/s...stopic.asp

Nos vemos.
Guillermo
Microsoft VB MVP desde 1997
Mentor Asociado de Solid Quality Learning Iberoamericana

Te recuerdo que puedes entrar en mi sitio desde:
http://www.elguille.info/ y http://www.mundoprogramacion.com/
Los foros en: http://foros.elguille.info/

"Hy Chanhan" escribió en el mensaje
news:
Hi,
I have some problem with DataGrid in C#.NET
I want to count Rows of DataGrid, How should i coding?
Please help me!
Thanks,

Preguntas similares