Alright, I am totally stuck here....
I have a database with several tables, amongst those are 'Bands', 'Labels' and 'CdDb'.
'Bands':
-id
-BandName (text)
-Website (text)
'Labels':
-id
-LabelName (text)
'CdDb':
-id
-BandId (num)
-LabelId (num)
In 'CdDb', the field "BandId" is based on the id stored in the table 'Bands' and "LabelId" is based on the id stored in table 'Labels'.
Now, I made a query in Access with these three tables. In DW I made a recordset based on this query. I am able to pull the data from the db. So far, so good.
However, I also made a detail page that should allow me to adjust the data. In that detail page, I want a listbox for the bandnames. So, basically I need a second query for the bands, compare it with the first query and set the selected band active (by passing the id), I guess.
But, what do I need for the second query and how do I compare it with the first query?
Thanks a lot!
I have a database with several tables, amongst those are 'Bands', 'Labels' and 'CdDb'.
'Bands':
-id
-BandName (text)
-Website (text)
'Labels':
-id
-LabelName (text)
'CdDb':
-id
-BandId (num)
-LabelId (num)
In 'CdDb', the field "BandId" is based on the id stored in the table 'Bands' and "LabelId" is based on the id stored in table 'Labels'.
Now, I made a query in Access with these three tables. In DW I made a recordset based on this query. I am able to pull the data from the db. So far, so good.
However, I also made a detail page that should allow me to adjust the data. In that detail page, I want a listbox for the bandnames. So, basically I need a second query for the bands, compare it with the first query and set the selected band active (by passing the id), I guess.
But, what do I need for the second query and how do I compare it with the first query?
Thanks a lot!