Basically I have 3 tables:
Table 1: tblCars (fields: CarId, CarName)
Table 2: tblAppointments (fields: ApptId, ApptStart, ApptEnd...)
Table 3 (links 1 & 2): tblReserve (fields: ApptId, CarId)
An "Appointment" can reserve MANY cars, hence the need for Table 3.
I want a new appointment to allow them to select 1 or more cars then save it. On save it saves the appointment and the necessary info to Table 3.
How do you suggest I handle this? I was thinking that I could use Resource Types, but wasn't sure how to save them to Table 3 etc...
Any thoughts on this?
Table 1: tblCars (fields: CarId, CarName)
Table 2: tblAppointments (fields: ApptId, ApptStart, ApptEnd...)
Table 3 (links 1 & 2): tblReserve (fields: ApptId, CarId)
An "Appointment" can reserve MANY cars, hence the need for Table 3.
I want a new appointment to allow them to select 1 or more cars then save it. On save it saves the appointment and the necessary info to Table 3.
How do you suggest I handle this? I was thinking that I could use Resource Types, but wasn't sure how to save them to Table 3 etc...
Any thoughts on this?