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