R
Ray
I have two forms, Form1 and Form2. Form1 has a
textbox, "CopyTo" and Form2 has a textbox, "CopyFrom".
Form1 is open and Form2 is open and has focus. The
control source Table for Form2 has multiple records. I
want to create a Command Button on Form2 which will
concatinate all the records in text box CopyFrom into
CopyTo. I have been able to copy from CopyFrom to CopyTo
using the following....
Forms.Form1.CopyTo = Me.CopyFrom
I want to scan thru the records and concatinate each one
I select into CopyTo by using something like...
Forms.Form1.CopyTo = [Forms.Form1.CopyTo] & ". " &
[Me.CoptFrom]
It doesnt work. Can you help.
textbox, "CopyTo" and Form2 has a textbox, "CopyFrom".
Form1 is open and Form2 is open and has focus. The
control source Table for Form2 has multiple records. I
want to create a Command Button on Form2 which will
concatinate all the records in text box CopyFrom into
CopyTo. I have been able to copy from CopyFrom to CopyTo
using the following....
Forms.Form1.CopyTo = Me.CopyFrom
I want to scan thru the records and concatinate each one
I select into CopyTo by using something like...
Forms.Form1.CopyTo = [Forms.Form1.CopyTo] & ". " &
[Me.CoptFrom]
It doesnt work. Can you help.