ACCESS - passing variable from one form to another [solved]
Hi all,
How can I pass variable from one form to another?
I have two forms: formA and formB. On formA there are textbox and commandbutton. On formB there is textbox. How can I pass value from textbox on formA to textbox on formB by clicking on commandbutton?
Please help.
Regards,
sweet_dreams
Re: ACCESS - passing variable from one form to another
As below I think, assuming your textboxes are both called textbox1.
me.textbox1 = Forms!formA!textbox1
Re: ACCESS - passing variable from one form to another
Thx Oliver1 thats what I've been looking for.