Number of rows in Datagrid

C

Chris

Mike said:
Hi,

Which property or method returns the number of rows in a DataGrid?


Thanks

This question was answered on the 19th:

You have to get it from the datasource.

If your datasource is a DataTable then:
DirectCast(Datagrid.DataSource, DataTable).Rows.Count

otherwise replace DataTable with whatever type is in the datasource.

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top