I have a form that is filled out by customer service with information such as
item number. When the QA department reviews this information they use a
command button to open the QA issues form which is a different table.
Question I would like fields such as the item number etc to pull to this new
form.
tedmi - 07 Apr 2008 12:21 GMT
The Load event of the second form can refer to controls on the calling form,
*IF* the calling form remains open:
Me.txtItemNo = Forms!frmCustService!txtItemNo

Signature
TedMi