I am doing a database for a small horseshow circuit. I originally designed the database with an append query that filled a table to join tblShow and tblClasses. I am trying to change the database to avoid doing this. I am concerned that the users will not be able to do this correctly.
I have the following:
tblEntry
EntryNum_pk
HorseNum_fk
RiderNum_fk
TrainerNum_fk
OwnerNum_fk
AssignedNum
ShowNum_fk
tblShowClassEntry
EntryNum_fk
ClassNum_fk
EntryFee
PlacingNum_fk
tblShow
ShowNum_pk
Show
tblClasses
ClassNum_pk
ClassNumber
Class
I have a frmEntryTabbed that allows the user to enter the information in tblEntry. I have a frmEntry_Subform that allows the user to enter the information in tblShowClassEntry except the placement. What I am trying to figure out is how to create a form that allows the user to enter the placement. The user needs to be able select the show and class and in the subform only see the EntryNum that fit that criteria. I have frmResults, but I am not sure how to limit the data in the subform. I am attaching a copy of the database if anyone would like to look at it.
I would appreciate any suggestions. Keep in mind that it is a db in transition.
I have the following:
tblEntry
EntryNum_pk
HorseNum_fk
RiderNum_fk
TrainerNum_fk
OwnerNum_fk
AssignedNum
ShowNum_fk
tblShowClassEntry
EntryNum_fk
ClassNum_fk
EntryFee
PlacingNum_fk
tblShow
ShowNum_pk
Show
tblClasses
ClassNum_pk
ClassNumber
Class
I have a frmEntryTabbed that allows the user to enter the information in tblEntry. I have a frmEntry_Subform that allows the user to enter the information in tblShowClassEntry except the placement. What I am trying to figure out is how to create a form that allows the user to enter the placement. The user needs to be able select the show and class and in the subform only see the EntryNum that fit that criteria. I have frmResults, but I am not sure how to limit the data in the subform. I am attaching a copy of the database if anyone would like to look at it.
I would appreciate any suggestions. Keep in mind that it is a db in transition.