I am trying to set a DataGridViewTextBoxCell.Value in formLoad, which kind of works, I can set it, but nothing is displayed.
DataGridViewTextBoxCell cel = (DataGridViewTextBoxCell)gvAirSegment.Rows[rowNumber].Cells[0];
cel.Value = "TEST";
This works, on button click, but does not work when its within a Form_Load. I have tried Refresh(), RefreshEdit(), InvalidateCell nothing seems to work, my guess is that its not fully created yet? even though I am doing this after I add all my items to the gridview... any help?