Wrong! (missed .text from Textbox4)
Shoud be:
Me.textbox4.text = Me.textbox1.text & Me.textbox2.text & Me.textbox3.text
Mikhail Berlyant
Data Integrator, Data Systems
Launch Your Yahoo!Music Experience http://launch.yahoo.com
Brainbench MVP for Visual Basic www.brainbench.com
Quote:
> Set the text property of the target textbox directly to
> the concatonated text properties of the 3 text boxes or
> first put the three into variables and concatonate the
> variables like this:
> Dim x As String = Me.textbox1.text
> Dim y As String = Me.textbox2.text
> Dim z As String = Me.textbox3.text
> Me.textbox4 = x & " " & y & " " & z
> >-----Original Message-----
> >What would be the best way to set the value of a text
> box
> >on a form to be the concatination of 3 different text
> box
> >values on the form? Thanks in advance.
> >.