I have an app with an Access 2003 datasource. The fields for a specific table are on a form and i'm using the standard pre populated navigation tool bar.
I simply want the data to load and then move to the same position in the records each time when the form loads...i'm trying this:
Me.TimeSheetDataTableAdapter.Fill(Me.TimeRecorderReplicaDataSet.TimeSheetData)
Me.BindingContext(TimeRecorderReplicaDataSet.Tables("TimeSheetData")).Position = 54
However, it always loads with the first record and not record 54.....!
What am i missing?
Thanks in advance...
I simply want the data to load and then move to the same position in the records each time when the form loads...i'm trying this:
Me.TimeSheetDataTableAdapter.Fill(Me.TimeRecorderReplicaDataSet.TimeSheetData)
Me.BindingContext(TimeRecorderReplicaDataSet.Tables("TimeSheetData")).Position = 54
However, it always loads with the first record and not record 54.....!
What am i missing?
Thanks in advance...