Click here to Skip to main content
15,896,540 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
I am working on windows application. I have a form in which I have a datagridview. To show data in datagrid I am 2 tables. When I run the project for the first time the columns are as I have set, but after that columns are jumbling, the data is under the particular column but the first column is on 6th position, etc.

I want to remove this error. Any Help ???

Thanks in Advance!!!
Posted

grid1.AutoGenerateColumns = false;

grid1.DataSource = datatable1;
grid1.Columns["Mycolumn"].DataPropertyName = datatable1.Columns["Mycolumn"].ColumnName;
 
Share this answer
 
I just changed the Autogenerate property of the Data grid view to false in the Form Load event and the problem was solved.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900