Hi,
Is there a way to hide a column in a datagrid?
I fill a datagrid with a table from a dataset. But I don't want to see all (customerid is not interesting to see but I need it for relation with other datatables). This is the code to fille the datagrid:
DGCustomers.DataSource = _
Database.DS_Customers.Tables("Customers")
' refresh the Datagrid
DGCustomers.Refresh()
Thanks, kleedje


Reply With Quote