How to populate a control

  • Thread starter Thread starter Tony Williams
  • Start date Start date
T

Tony Williams

I have a form that has a number of unbound controls. I have a control on a
subform called txtInvNumber that is based on a table Invoices. I want the
value of txtInvNumber to be the same as one of the unbound controls on the
main form called Invoice Number. How do I do that?
TIA
Tony Williams
 
In the Current event of the control on the subform, put:

Me.txtInvNumber = Me.Parent.Controls("Invoice Number")

Pavel
 
Back
Top