forms new form

R

Rpettis31

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.
 
T

tedmi

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
 
Top