Page 1 of 1

MySqlDataTable with FetchAll

Posted: Wed 27 Jun 2007 14:56
by Massimo
I have using MySqlDataTable with FetchAll = false and DataGridView.datasource, how can i positioning to the
record in the DataGridView if it still is not loaded?

es.

A MySqlDataTable whit 10000 records;
DataGridView view the first row;
How i can go to the row 5000?

Thanks,
Massimo

Posted: Wed 27 Jun 2007 15:11
by Alexey
Try

Code: Select all

MySqlDataTable.StartRecord = 5000;