I'm using visual studio 2008.
I have a datagridview in a winform. I've bound to it using an object
Private Sub LoadAllCampers()
Dim Os As List(Of LE.Camper) = Nothing
Dim Oc As New LE.Camper_Controller
Os = Oc.GetCamperData(0)
With Me.dgResults
.DataSource = Os
End With
CamperBindingSource.DataSource = Os
End Sub
I have a tag setup on the ID property within the Camper class. when i double click on a row in teh datagridview, i do a me.dgResults.tag and it always shows the first rows ID value. If i change the ordering within the class, it will display a different value, but it's always the first value in the datagridview.
I'm missing something simple to get this working.. just don't know what it is. Hopefully someone can spare a minute.