G
Guest
I'm not sure what to make of this problem, but hopefully it's fixable. I have
created a 'Table' control which is basically just a grid of text boxes.
However, whenever the control is initialised it is done so in the wrong order:
this.table1.Columns = 3;
this.table1.DefaultColumnWidth = 96;
this.table1.DefaultRowHeight = 22;
this.table1.Rows = 3;
That is an extract from a form's InitializeComponent function. As should be
able to see the table columns are created before the default column width is
specified when it really should be done beforehand. Is there any way to force
the designer to initialise the properties of a control in a specific order as
opposed to alphabetic?
Thanks in advance
created a 'Table' control which is basically just a grid of text boxes.
However, whenever the control is initialised it is done so in the wrong order:
this.table1.Columns = 3;
this.table1.DefaultColumnWidth = 96;
this.table1.DefaultRowHeight = 22;
this.table1.Rows = 3;
That is an extract from a form's InitializeComponent function. As should be
able to see the table columns are created before the default column width is
specified when it really should be done beforehand. Is there any way to force
the designer to initialise the properties of a control in a specific order as
opposed to alphabetic?
Thanks in advance