Guys! Please help me! For example, i have a programme. There are 4 textboxes and 1 button. So i write in the first textbox a number 2, 3 or 4 and then in one of the textbox programme writes something (doesn't matter what):
I hope i wrote it clear and you understand what i want - i want to control with this "x" in which textbox will i write something, but obviously my code isn't working. Please help!
Code:
Dim x As Integer Sub Button1.Click(....) x = Val(TextBox1.Text) TextBox(x).Text = "blahblahblah" End Sub
Comment