I wanted to get some advice on form navigation. Here is a very basic summary of my db. I have parent, child, and accounting tables, and each has a form for data entry. The Parent table has ParentID as Auto number for the primary key, the Child table has childID as Auto number for the primary key and ParentID as the foreign key, and Accounting has accountingID as Auto number for the primary key and childID as the foreign key. There are relationships setup: Parent->Child->Accounting. What I would like to know is what the best way to setup my forms. The first form the user will fill in will be the parent form, from there the child form and finally the accounting form. What I would like to do is have the user fill in the parent form, Click an Add Child button, upon clicking the button it should open the Child form (new record) and establish a relationship from the ParentID. I would prefer not to use sub forms.
Thanks for the help!!
Thanks for the help!!