How to select columns in DataGrid?

  • Thread starter Thread starter Terry Olsen
  • Start date Start date
T

Terry Olsen

I've got my datgrid loaded (finally). I can select rows & delete them.
But I can't select columns to delete them. When I click on a column
header, all that happens is the grid is resorted by that column. How
can I change it so I can select the column to delete it?

Thanks!
 
Hi Terry,

You cannot, the only thing that could be done is that you delete (disable) a
columnstyle from your datagridstyles. However because of that the datagrid
is only the view on the screen of table(s). that means not that the column
is actualy deleted, but that it is only not shown.

I hope this makes it a little bit clear?

Cor
 
Back
Top