Hi!
I have a mainform A with a button to call another form B.
Say mainform A is People form and form B is book form
I want to enter name of books a person read.
Mainform A
ID Name
12 John
from this form click a button to open the form B to enter name of books he read.
Form B must show previosly added book name if it is a first time addding.
My question.
Where does the ID of book form get created???
I have a client's code and I don't see the code where the ID of second form gets created.
What I see is when
a button is clicked from the mainform A
(DoCmd.OpenForm formB,,stCriteria,,ParentID)
and
some event procedures.
But I don't see anywhere from the code,
where actual data got updated to the table or new id gets created.
Can you help??
I have a mainform A with a button to call another form B.
Say mainform A is People form and form B is book form
I want to enter name of books a person read.
Mainform A
ID Name
12 John
from this form click a button to open the form B to enter name of books he read.
Form B must show previosly added book name if it is a first time addding.
My question.
Where does the ID of book form get created???
I have a client's code and I don't see the code where the ID of second form gets created.
What I see is when
a button is clicked from the mainform A
(DoCmd.OpenForm formB,,stCriteria,,ParentID)
and
some event procedures.
But I don't see anywhere from the code,
where actual data got updated to the table or new id gets created.
Can you help??