Copy or Select

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

Guest

Hello,

I have a problem that i cant seem to solve. I have some data in subform that
i can change records. what i want to do is that i want to select specific
data from that subform and i want to click a command button, when i do this
the data from the sub form should be copied on to actual form fields.

have i lost you !

i want to select a quote from the subform, when i select the quote i want ,
i want to click a button that will copy all the information in the fields of
that subform, into the fields of the actual form, which is the invoice form,
therfore creating a invoice for the quote.

is this possible ? i hope someone can help.

thank you
 
Yes,

Me.txtSomeTextBox = Me.MySubForm!SomeTextBox
Me.txtAnotherTextBox = Me.MySubForm!txtAnyOtherTextBox
etc
 
Back
Top