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("ColumnNa me", myColumnName)
If (index <-1) Then
myBindingSource .Position = index
End If
How should I set the BindingSource.P osition 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("ColumnNa me", myColumnName)
If (index <-1) Then
myBindingSource .Position = index
End If
How should I set the BindingSource.P osition with two or more primary keys?
Thanks
Foef
Comment