I have a DataGridView populated from a DataSource with the code:
[code=vbnet]
Dim dt As New DataTable
dt.Columns.Add( "Name")
dt.Columns.Add( "Result")
Dim dr As DataRow
For i = 1 To 12
dr = dt.NewRow()
dr(0) = "Name " & i.ToString()
dr(1) = "Result " & i.ToString()...