A
Amos
Can I add a column to the datagrid and also resize it? I add them like this:
DataTableAddress.Columns.Add("Col1", typeof(string));
DataTableAddress.Columns.Add("Col2", typeof(string));
DataTableAddress.Columns.Add("Col3", typeof(string));
I'd like to add to resize them without using a datacolumn because there's
over 30 columns and because the application is working well already (I don't
know how the datacolumn additions will affect the application).
Thanks,
Amos
DataTableAddress.Columns.Add("Col1", typeof(string));
DataTableAddress.Columns.Add("Col2", typeof(string));
DataTableAddress.Columns.Add("Col3", typeof(string));
I'd like to add to resize them without using a datacolumn because there's
over 30 columns and because the application is working well already (I don't
know how the datacolumn additions will affect the application).
Thanks,
Amos