D
Desert Bear
I have just created a new person record in frmAddPerson, based on tblPeople
I need to create matching records in tblVersion and tblEval, which are not part of frmAddPerson
I created frmAddVersion which is opened to create the tblVersion record. It's clumsy but works
DoCmd.GoToRecord acDataTable = "tblVersion", acNewRec
gives a type mismatch
What is the correct format
I need to create matching records in tblVersion and tblEval, which are not part of frmAddPerson
I created frmAddVersion which is opened to create the tblVersion record. It's clumsy but works
DoCmd.GoToRecord acDataTable = "tblVersion", acNewRec
gives a type mismatch
What is the correct format