transfer new value to another form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have field A on form A.
The notinlist event is opens a new form with: DoCmd.OpenForm "Form B", , , ,
, acDialog .
I need, after closing form B, the value of field A (which is comum to both
tables) to be transfer to form A.
Is this possible?
 
Raul said:
I have field A on form A.
The notinlist event is opens a new form with: DoCmd.OpenForm "Form B", , , ,
, acDialog .
I need, after closing form B, the value of field A (which is comum to both
tables) to be transfer to form A.
Is this possible?

gee... how about using something like this in Form B....

Me.Controls("TheControlToCopyTo")=Forms![TheOpenFormIWantToCopyFrom]![theControlNameContainingTheDataIWantToCopy]
 
Back
Top