[RESOLVED] data bindings and ADO.NET2.0 datasets
I have a dataset i want to bind to a datagridview; however, I want to not display certain fields. My dataset would have something like "Name", "Date" and "Address" columns, but I only want to display the name and address columns in my datagridview. Will this mean I have to manually set my columns in the datagridview or can I still do the sweet properry calls of datasource = myDS and datamember = myDS.Tables("People")?
Thanks,
Taco
Re: data bindings and ADO.NET2.0 datasets
Manually set columns in the datagridview or dataview object.
Re: data bindings and ADO.NET2.0 datasets
So I need to add the columns at design-time, then I can still datasource to the DS and datamember to the table?
Re: data bindings and ADO.NET2.0 datasets
You should be able to set the visibility of columns at run time....
-tg