B bholiday Registered User. Local time Today, 12:57 Joined May 31, 2002 Messages 12 May 31, 2002 #1 i would like to transfer the contents of a text box in a form to another forms text box or a table. I can transfer text within a form using me.textboxname = me.othertextboxname, however I cann't seem to do it between forms.
i would like to transfer the contents of a text box in a form to another forms text box or a table. I can transfer text within a form using me.textboxname = me.othertextboxname, however I cann't seem to do it between forms.
B bdubuc bdubuc Local time Today, 12:57 Joined Dec 31, 2001 Messages 18 May 31, 2002 #2 You have to use the long syntax: forms!Form2.myfield you can use the expression builder to get the exact string you need. HTH
You have to use the long syntax: forms!Form2.myfield you can use the expression builder to get the exact string you need. HTH
B bholiday Registered User. Local time Today, 12:57 Joined May 31, 2002 Messages 12 Jun 3, 2002 #3 Thank you!