Greetings All, just started out leaning relational DB and access a few weeks ago, and seems that i need some pointers as i can not find any obvious answers (obvious to me).
If any one can answer any of the following questions i would be exceedingly happy. =)
Background: i am designing a TV episode database, basically as a learning exercise..
I have on the main form 7 sub forms as part of an overview/edit mode style. So i can have all the details on the screen at once.
Building them manually i have Master/child control links set correctly, and one sub form when "on_current " .requery the next (via VB), across the 7 subforms. I am *guess* this is how u should do it if u want to go no deeper than one sub form?? any advise on this tack?
Doing this i have ran into an issue... i have each table represented in a subform off the main form, i am having issues setting up one subform, like the rest, and it will not work without adding VB code.
Because the table AVSerialFileSpe cifications has two other tables connecting to it with many relationships, i seem to be having trouble with connecting the Disk subfom behaving with the AVSeriesFileSpe cificationQuery subform. Setting the Master/child links seem not to be having the desired affect. I kinda understand why the Disk form is not being updated with new records etc etc, and this can all be fixed with VB, checking the Disk table for a match, if non then create a new rec and drop in the value.
Is this the way designing the form i want should be done??? Seems like i am missing something in access that i have to code checks in for this.
AVSeriesEpisode DetailsQuery form control,
Child Link SeasonKey
Master Link [AVSeriesSeasonD etailsQuery].form![SeriesKey]
on_current: Me.Parent![AVSeriesFileSpe cificationQuery].Requery
AVSeriesFileSpe cificationQuery form control,
Child link EpisodeKey
Master link [AVSeriesEpisode DetailsQuery].form![episodeKey]
form on_current: Me.Parent![AVSeriesAudioDe tails].Requery
Me.Parent![EditDisk].Requery
Disk **this way it will at least bring up the details of the Disk, but wont allow changes or additions**
Child Link DiskIdent
Master Link [AVSeriesFileSpe cificationQuery].form![DiskIdent]
EditAVSeriesAud ioDetails
Child Link SeriesKey
Master Link [EditAVSeriesFil eSpecificationQ uery].form![AVFileKey]
If any one can answer any of the following questions i would be exceedingly happy. =)
Background: i am designing a TV episode database, basically as a learning exercise..
I have on the main form 7 sub forms as part of an overview/edit mode style. So i can have all the details on the screen at once.
Building them manually i have Master/child control links set correctly, and one sub form when "on_current " .requery the next (via VB), across the 7 subforms. I am *guess* this is how u should do it if u want to go no deeper than one sub form?? any advise on this tack?
Doing this i have ran into an issue... i have each table represented in a subform off the main form, i am having issues setting up one subform, like the rest, and it will not work without adding VB code.
Because the table AVSerialFileSpe cifications has two other tables connecting to it with many relationships, i seem to be having trouble with connecting the Disk subfom behaving with the AVSeriesFileSpe cificationQuery subform. Setting the Master/child links seem not to be having the desired affect. I kinda understand why the Disk form is not being updated with new records etc etc, and this can all be fixed with VB, checking the Disk table for a match, if non then create a new rec and drop in the value.
Is this the way designing the form i want should be done??? Seems like i am missing something in access that i have to code checks in for this.
AVSeriesEpisode DetailsQuery form control,
Child Link SeasonKey
Master Link [AVSeriesSeasonD etailsQuery].form![SeriesKey]
on_current: Me.Parent![AVSeriesFileSpe cificationQuery].Requery
AVSeriesFileSpe cificationQuery form control,
Child link EpisodeKey
Master link [AVSeriesEpisode DetailsQuery].form![episodeKey]
form on_current: Me.Parent![AVSeriesAudioDe tails].Requery
Me.Parent![EditDisk].Requery
Disk **this way it will at least bring up the details of the Disk, but wont allow changes or additions**
Child Link DiskIdent
Master Link [AVSeriesFileSpe cificationQuery].form![DiskIdent]
EditAVSeriesAud ioDetails
Child Link SeriesKey
Master Link [EditAVSeriesFil eSpecificationQ uery].form![AVFileKey]
Comment