Concatenating txtBoxes

  • Thread starter Thread starter Brian Conway
  • Start date Start date
B

Brian Conway

How do I make 3 text boxes into one?

txtBox1
txtBox2
txtBox3 = txtBox1txtBox2txtBox3
 
Do you want the text value of the three text boxes to be concatenated?

t3.Text = t1.Text + t2.Text;
 
Wouldn't that be:

t3.Text = t1.Text + t2.Text + t3.Text

:)

Reinout Hillmann
SQL Server Product Unit
 
Back
Top