Quote Originally Posted by snakeman
ok but
i mean i want the datagridview to display only one row (the first record in My DB).
and when i press forward the same row in The Datagridview Will Be Changed the Information To the Second row In The DB.
can i do that ?
thx

yes,you can do that.
clear all the columns of the datagridview and display the second row.

'to clear all the columns in datagrid
DataGridview.columns.clear()

and then add the row to it and display your content.