I have a text box on form1 and I want to copy the contents to a textbox on form 2.
The first, original textbox, has a list in it.
I tried the following, but I got a mismatch error;
Any suggestions?Code:Form2.Textbox2.Text = Split(Form1.Text1.Text, vbCrLf)
:)
