Hi, I'm filling a grid with a list of the type: List (of T). When I add the columns at programming time I can access the column index but not when I add them at design time.
'this are my rows (with level)
Dim iRow1 As iGRow
Dim iRow2 As iGRow
'Cols.Add("nameCol", 85)
for each item in list
iRow1.Cells(0).Value = list.Item(i).field_name 'Here error when I remove the column at programming time.
next
What other way do I have to access them?