I have two data tables in an Access database. Using the Northwind data walkthrough database sample, I show the customer information from the parent (Customers) table and related fields from the child (Orders) table on a form. The CustomersTableAdapter.Fill is used to fill the form and related data is filled by the OrdersTableAdapter.Fill method.
I want to be able to select records filterd by the ShipVia field in the child (Orders) table where the ShipVia field matches a certain value. I can do this using a FillBy query in the CustomersTableAdapter by adding the Orders table to the query, but the resulting dataset is read only and the records cannot be edited.
Is there a way to do this and allow for editing of the selected records?
Thanks.
I want to be able to select records filterd by the ShipVia field in the child (Orders) table where the ShipVia field matches a certain value. I can do this using a FillBy query in the CustomersTableAdapter by adding the Orders table to the query, but the resulting dataset is read only and the records cannot be edited.
Is there a way to do this and allow for editing of the selected records?
Thanks.