DoCmd.OpenForm "NewTransaction", acNormal, "Query4TransactionForm", "[EmployeeID]=[TempVars]![loginID]", acAdd, acNormal
When I implement the DoCmd as shown above, an blank form is presented that can be populated. If I edit the content and then close the form,
the database is updated. Is there anyway to cancel what you have edited? Is there anyway to manually save the form?
My Workaround -
I created an unbounded form and then called a VBA sub to read the content of the form and create a new record in the database. I am just wondering
about the procedure above if there is a way to control updating the database