I put this code to the load Procedure of the form.

'Loading Records
OleDbDataAdapter1.Fill(DataSet11, "Employee")
DataGrid1.DataSource = DataSet11.Employee

But everytime i use;

'Move Next
Me.BindingContext(DataSet11, "Employee").Position += 1

DataGrid still display the first record. What's wrong with this code?