F
Foef
I have a BindingSource with an underlying table with two primary keys.
To set the position with one primary key works fine as shown in the code
snippet below:
Dim index As Integer = myBindingSource.Find("ColumnName", myColumnName)
If (index <> -1) Then
myBindingSource.Position = index
End If
How should I set the BindingSource.Position with two or more primary keys?
Thanks
Foef
To set the position with one primary key works fine as shown in the code
snippet below:
Dim index As Integer = myBindingSource.Find("ColumnName", myColumnName)
If (index <> -1) Then
myBindingSource.Position = index
End If
How should I set the BindingSource.Position with two or more primary keys?
Thanks
Foef