I have three tables with M:M relationship.
TBLApp - AppID and other fields
TBLAnimals - AnimalID and other fields
TBLAppSpecies - AppID, AnimalID and other fields - this is the junction table
First form based on tblApp
Second form based on junction table, with a subform based on tblAnimals
Presently I have a command button the application form that open the second form, to the AppID on the first form.
DoCmd.OpenForm "frmAppSpecies",,,,,,Me.AppID
How do I then allow the user to add another record that is also related to that AppID, without going back to the first form and reclicking the command button?
I know this would be simpler using a subform in the application form, but I've been directed that this is not what the boss wants!