Does anyone know how to set a variable so that it relates to a textbox?
For example:
Code:
Dim TextBoxNumber As Integer
now you can set/add/change that number globally or locally, but I need a line of code that Dim's a variable as text in a textbox...
For example:
Code:
Dim num1 As TextBoxNumber.Text
Does anyone understand what I'm talking about? It's hard to explain.
See, what I'm doing is creating a game and I want the users to be able to enter their name in and it will be displayed each time it's their turn.
How would I go about doing this?