AccessDiscussion of Microsoft Access database design and programming. See also the forums for Access ASP and Access VBA.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Access section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I was wondering if anyone could explain to me how to read a dataset into a form that is in dataset view and the form is unbound. I want this form to be used as a sub form and be filtered based on list box from the main form.
One usually does that with a query. Is there a reason you can't use a query? Otherwise put it in a temporary table, and base the subform on the temp table.
I never thought of using a query to open a data sheet view. the reason I want to do it that way is because the main form is unbound and each customer has multiple rations and each livestock ration is loaded into the list box to choose from so basically when the user selects the ration from the list box it loads the actual ration of products and quantity. The only thing is I wish to be able to have the products in a list box on the data sheet view so they may be able to add or delete products :)