That did it! Thanks
I am reading "Teach Yourself C# in 24 hours" where this exercise came from.
I am new to programming and determined to learn to program. This is the very
first book I have picked up on programming. And I knew nothing about
programming before I picked it up. I can tell that this isn't going to be
something that I or anyone will learn in 24 hours, because I have over that
amount of time invested and I am only in chapter 3. They should rename this
book to "Teach Yourself C# in 10 years, lesson 1 of 1000" LOL
I already have ASP.Net 2.0 in 24 hours, SQL in 24 hours, C# in 21 days and
Visual Studios.Net 2003 in 21 days, that I intend on reading to help me
learn. Is there any recomendations that you might have that will help me
learn to program?
Your help is much appreciated.
"Marc Gravell" wrote:
If you double click on the button, it will create an event-handler and
link it up, so all you need to do is add some code.
For example, inside the "{something}_Click" method it creates, you could
write (guessing at the names):
textBox2.Text = textBox1.Text;
Does that get yuo started?
Marc