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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top