In a VS2010 program, I have a DataGridView with custom Columns ( not editables ). When I start the GUI, columns are shown in the order I put them; the problem is that when the program starts filling them, columns are reordered in some strange way, and I can’t figure out why ( i disable the manual reordering and resizing option).
How can I force the columns to stay in the order I’ve decided?
In a VS2010 program, I have a DataGridView with custom Columns ( not editables
Share
if AutoGenerateColumns is set to true put it to false in the properties of your DataGridView. How does it work then?