JL
I tried the code that you sent. I get an error message saying that "You
can't assign a value to this object" and it goes to the line of code that
says
Me![Field1] = [Forms]![FirstForm]![Field1]
I inserted my field name and form name of course. Can you help me with what
I have done wrong?
slhenson
JL said:
Hi slhenson,
On the "Form open" event on the second form. The fields will only populate
on the form first open.
Private Sub Form_Open(Cancel As Integer)
Me![Field1] = [Forms]![FirstForm]![Field1]
Me![Field2] = [Forms]![FirstForm]![Field2]
End Sub
slhenson said:
I am using MS Access 2000. I have 2 forms. I am trying to pull 2 fields from
the 1st form to automatically populate those fields in the 2nd form when I go
to it from the 1st form.