May 6, 2004 #1 metalboy Technical User Apr 1, 2004 97 GB I know how tho copy a value from one text box to another on the same form but how do you do it from one form to another? Regards Alex
I know how tho copy a value from one text box to another on the same form but how do you do it from one form to another? Regards Alex
May 6, 2004 1 #2 PHV MIS Nov 8, 2002 53,708 FR Take a look in the FAQ area Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
Take a look in the FAQ area Hope This Help, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
May 6, 2004 1 #3 RoyVidar Instructor Jun 16, 2000 6,606 NO Just add the complete references, say having one control on the current form where you want to put the value of txtBox2 in frm2: [tt]me!txtBox1.Value=forms!frm2!txtBox2.Value[/tt] Or the opposite [tt]forms!frm2!txtBox2.Value = Me!txtBox1.Value[/tt] Next step is subforms, where this link might come in hancy How to Refer to a Control on a Subform or Subreport Roy-Vidar Upvote 0 Downvote
Just add the complete references, say having one control on the current form where you want to put the value of txtBox2 in frm2: [tt]me!txtBox1.Value=forms!frm2!txtBox2.Value[/tt] Or the opposite [tt]forms!frm2!txtBox2.Value = Me!txtBox1.Value[/tt] Next step is subforms, where this link might come in hancy How to Refer to a Control on a Subform or Subreport Roy-Vidar
May 6, 2004 Thread starter #4 metalboy Technical User Apr 1, 2004 97 GB Thanks Guys. Regards Alex Upvote 0 Downvote