transfer data from one text box in a form to another

V

vss85

how do i transfer data from one text box located on a form to another text
box located on a sub-form on the main form. complicated i know.

what vba code do i use.

any solutions

thank you
 
L

ldiaz

you need to specify if you want to make the operation after which event in
subform.
then you need to put something like this:

[textboxinsubform] = Forms!FormName![texboxinform].text


LD
 
Top