Hi I can find the datarow I want like so

VB Code:
  1. Dim pkey(0) As DataColumn
  2.             pkey(0) = ds.Tables("ContactsCom").Columns(0)
  3.             ds.Tables("ContactsCom").PrimaryKey = pkey
  4.  
  5.             Dim foundRow As DataRow
  6.             Dim findTheseVals(0) As Object
  7.             findTheseVals(0) = 11
  8.             foundRow = ds.Tables("ContactsCom").Rows.Find(findTheseVals)
  9.             If Not (foundRow Is Nothing) Then
  10.                 MsgBox(foundRow(1).ToString())
  11.             End If

A simple question but how do I move to that datarow in the datatable, so all the bound controls show the value I have just found.
eg ds.Tables("ContactsCom").Move(11)