Visual Basic .NET

Started by
3 comments, last by nooblet 17 years, 6 months ago
Hello, I am trying to create a simple name program. I want it to where there are two textbox's and one is in Read-Only and it display's "Hello, what is your name?" and the user will type it in the other textbox and then click a button called send and it display's the users name in the read only textbox, I got all the buttons and stuff, but I am stuck on the coding part. So far I have..

TextBox2.Text = TextBox1 

Which won't let me compile, any help?
Advertisement
Nevermind, I have figured it out!
Let me guess, it was supposed to be:

Textbox2.Text = Textbox1.Text

Am I right? [grin]
If VB.net is anything like VB6, then yes, that is correct :P.
God is not all-powerful, as he cannot build a wall he cannot jump.Stelimar Website: eddy999999.ed.funpic.org/Stelimar/index.html
Quote:Original post by Moe
Let me guess, it was supposed to be:

Textbox2.Text = Textbox1.Text

Am I right? [grin]


Yup :)

This topic is closed to new replies.

Advertisement