taylorantone
MIS
I want to create a data access page that assigns a borrower to a borrowed DVD. On this page, I only want a field showing the DVD title and a drop down box defaulting to the currently assigned borrower, but allowing me to re-assign it.
The tables/queries are set up as follows (the two tables are obviously related).
DVD table--
title
borrowerID
Borrower table--
borrowerID
borrower
DVDborrower query--
title (from DVD table)
borrower (from borrower table)
No matter how I try to set up the access page--either using the tables or the query--if it DOES allow me to edit the borrower, it replaces the borrower in the entire table and not just the selected record.
What I thought needed to do was to pull the title from the DVD table in a text box, then use a drop-down box to be bound to the borrowerID in the DVD table but display the actual borrower's name using the borrower table, and then update the borrowerID in the DVD table when I make a different selection from the drop-down.
I can do this really easily in Forms/Queries, but the data access pages are a totally different animal apparently.
Thanks in advance!!!
The tables/queries are set up as follows (the two tables are obviously related).
DVD table--
title
borrowerID
Borrower table--
borrowerID
borrower
DVDborrower query--
title (from DVD table)
borrower (from borrower table)
No matter how I try to set up the access page--either using the tables or the query--if it DOES allow me to edit the borrower, it replaces the borrower in the entire table and not just the selected record.
What I thought needed to do was to pull the title from the DVD table in a text box, then use a drop-down box to be bound to the borrowerID in the DVD table but display the actual borrower's name using the borrower table, and then update the borrowerID in the DVD table when I make a different selection from the drop-down.
I can do this really easily in Forms/Queries, but the data access pages are a totally different animal apparently.
Thanks in advance!!!