B Brian Conway May 24, 2004 #1 How do I make 3 text boxes into one? txtBox1 txtBox2 txtBox3 = txtBox1txtBox2txtBox3
M Mickey Williams May 24, 2004 #2 Do you want the text value of the three text boxes to be concatenated? t3.Text = t1.Text + t2.Text;
R Reinout Hillmann [MS] May 25, 2004 #3 Wouldn't that be: t3.Text = t1.Text + t2.Text + t3.Text Reinout Hillmann SQL Server Product Unit
C C# Learner May 25, 2004 #4 Reinout said: Wouldn't that be: t3.Text = t1.Text + t2.Text + t3.Text Click to expand... You forgot the statement terminator.
Reinout said: Wouldn't that be: t3.Text = t1.Text + t2.Text + t3.Text Click to expand... You forgot the statement terminator.
M Mickey Williams May 25, 2004 #5 Reinout Hillmann said: Wouldn't that be: t3.Text = t1.Text + t2.Text + t3.Text Click to expand... Doh!
Reinout Hillmann said: Wouldn't that be: t3.Text = t1.Text + t2.Text + t3.Text Click to expand... Doh!