how can we move throw instanced dataset using
VB Code:
  1. dim myDa as new SqlDataadapter("Select * from Emp", Myconn)
  2. Dim myDS As New Dataset
  3. myDA.Fill(myDs,"Emp")
  4. DataBindingContext (myDS,"Emp").Position+=1

also how we can bind axmsflexgrid to dataset ?