George, first of all you get the value in the textbox with this syntex
if textBox1 is the name of your textbox control.
Secondly, if you would write somthing like
Code:
textBox1.Text + textBox2.Text
you will not get the sum but the concatination of the two values stored
in the two text boxes, cause everthing in text boxes is treated as a string
in
VB .NET. You will acutally have to do something like
Code:
Convert.ToInt32(textBox1.Text) + Convert.ToInt32(textBox1.Text)
to get the sum.
Simple thing it is, no doubt, but it'll take u some time to get accustumed
VB .NET's ways.
But you will be doing fine, I'm sure, 'cause
VB .NET is a very friendly language otherwise.
Regards
Ankur Verma