Creating multiple subforms within a form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm creating a database to house my music collection, some of which are live
bootleg recordings, that have muliple discs.

Is it possible to have control that will create a subform for each disc, to
keep track listings, after inputing the number of discs each show has?

As an example, if a show consited of 2 discs, after I entered that info into
a number of discs field, can a control create a track subform for each disc?
 
john said:
I'm creating a database to house my music collection, some of which are live
bootleg recordings, that have muliple discs.

Is it possible to have control that will create a subform for each disc, to
keep track listings, after inputing the number of discs each show has?

As an example, if a show consited of 2 discs, after I entered that info into
a number of discs field, can a control create a track subform for each disc?

Wrong design.
Album--(1,M)---Disc--(1,M)---Song
You're missing the Disc table. (DiscID (PK1),AlbumID (PK2))

You would probably do this with Album as the source of the main form,
Disc as the source for the Disc subform in main, and then Song would be
a subsubform (subform of Disc).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top