the code
IGrid1.Cols.Add("Col1")
IGrid1.Cols.Add("Col2")
IGrid1.Rows.Add()
IGrid1.Cells(0, 0).Value = "OK"
IGrid1.Cells(0, "Col1").Value = "ERROR"
this line causes the error "Invalid key"
As would use the column name to assign to the cell value?
thanks