DataGrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am pointing a DataGrid at a DataTable to display some data. Is there a way to

a) hide columns that are displaye
an
b) update the row header with some tes
TIA
 
H

You can hide the column by setting its width to 0

Like
Dim dgc As DataGridColumnStyl
dgc = DataGrid1.TableStyles(0).GridColumnStyles("id"
dgc.Width =

Sooraj P
Microsoft India Community Star
 
Back
Top