DataGrid1 column width
Managed C++/CLI
1
Posts
1
Posters
0
Views
1
Watching
-
Any know how to resize a column in datagrid This is my code: ///////////////////////////////////////////// dad = new OdbcDataAdapter("select * from MesgDetails", cn); ds->Clear(); dad->Fill(ds); dataGrid1->PreferredColumnWidth = 82; dataGrid1->DataSource = ds->Tables->Item[0]; ////////////////////////////////////////////// i want to resize a specific column. :sigh: