jennyek2000
Programmer
I have used the following code to find a particular row in a dataset, but now how do I set the binding manager so that it displays the data for that row? (i.e. bmjobs.position = ??)
Dim mydatarow As DataRow
Dim Mydatacolumn(0) As DataColumn
Mydatacolumn(0) = mydataset.Tables("Jobs".Columns("JobNumber"
mydataset.Tables("Jobs".PrimaryKey = Mydatacolumn
mydatarow = mydataset.Tables("Jobs".Rows.Find(myfrmSearchjobs.searchIndex)
Thanks,
Jenny