u can bind the table and go to a position
Code:
Dim myBindingMainBase As BindingManagerBase
Dim dTable As DataTable
Dim da_adapter As New OleDbDataAdapter("string ", Connection)
da_adapter.Fill(ds_dataset, "tablename")
dTable = ds_dataset.Tables(0)
dgDataGrid.DataSource = ds_dataset.Tables(0)
myBindingMainBase = BindingContext(ds_dataset.Tables(0))
myBindingMainBase.Position = 0
you can give mybindingmanibase.position = ___ where __ is the position returned by ur hotkey
hope this helps u out...would b glad if i was a help to anyone as this forum has really helped me a lot...