Datagridview column order bug

G

Guest

I have a datagridview bound to a bindingsource.

I inserted some unbound columns in the grid.

I ordered them the way i wanted using the up and down arrows of the "edit
columns" menu.

Once in a while, the order of the columns scrambles randomly in design mode.
I have to reorder all of them and its getting incredibly annoying.

Anyone encountered this problem before???



Example :
Column order :
ProductID, Name, Description, Site, Choose.


Once in a while, i go back to design mode and the order is :
Name, Description, Choose, ProductID, Site.


Its like someone is playing a prank on me.
 
G

Guest

This happens occasionally when a designer change re-writes the
InitialiseComponnent method.
You could copy the initcomponent method and swap it in each time its
rewritten (just the relevant bit).
or, for a once and for all answer,
after the call to InitializeComponnent in the constructor, go through the
columns and set the displayorder property
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top