writing two textbox's text in one textbox

A

agb

Hi
I want to write Textbox1.text and Textbox2.text with between spaces into
textbox3.text in the HTML window

I mean

textbox3.text = textbox1.text " " textbox2.text
My program = my + " " +program

how?
 
K

Ken Cox [Microsoft MVP]

Try this?

Private Sub Button1_Click _
(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles Button1.Click
TextBox3.Text = _
TextBox1.Text & " " & TextBox2.Text
End Sub

--
Microsoft MVPs have a question for *you*: Are you patched against the Worm?
http://www.microsoft.com/security/security_bulletins/ms03-026.asp



Hi
I want to write Textbox1.text and Textbox2.text with between spaces into
textbox3.text in the HTML window

I mean

textbox3.text = textbox1.text " " textbox2.text
My program = my + " " +program

how?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top