Attached is a copy of my sweet little Database that I am trying to make an application for. I want the Manifest Master and Manifest Detail tables to be in a drill down datagrid. I am not sure how to do this. I have looked for tutorials on creating master detail forms but none of them show how to do this on a single datagrid control. I am certain it can be done because I have seen it.
To data-bind the DataGrid control to multiple tables in a dataset in the designer
1-Set the control's DataSource property to the object containing the data items you want to bind to.
2-If the dataset contains related tables (that is, if it contains a relation object), set the DataMember property to the name of the parent table.
3-Write code to fill the dataset.