Passing data from form1 to form2

  • Thread starter Thread starter terrie.sullivan
  • Start date Start date
T

terrie.sullivan

I have form1 based on query where you enter ID and retrieve list of
members with same ID. If member not shown, I have command button to
open another form (form2) to add member and data to another table. How
do I carry over the ID entered on form1 to form2, so user does not have
to key it?
 
In the form2 form's Close event procedure, run code that writes the value of
the ID to the control on form1 form.
 
Back
Top