Need help in VB.Net programming

ZeroX1

Solid State Member
Messages
8
Hi!

I got a school assignment to do a roulette program. I have it almost ready but one thing remain.

If i have a variable result that contains a number lets say 5, how do i get the 5 to show in the textbox.
 
by using the property Text for the TextBox element.

suppose the name of your Textbox element is TextBox1 then you can show the value of the variable named result in the Textbox by:

TextBox1.Text = result
 
Back
Top Bottom