Sorry If this is in the wrong location. It is very confusing on where I should put this information at, so I thought testing would be a good place to start.
I am having trouble understanding why some controls can be in the form of control(1).property and others like textbox cannot be in that form. I am tryinig to insert 18 textboxes in to an array , so I can only input values one time. My coding looks like this
It doesn't allow me to generate different values for textboxes.
The error it say is textbox is a type and cannot be used as an expression, how do I make it an expression.
Thanks for the help
I am having trouble understanding why some controls can be in the form of control(1).property and others like textbox cannot be in that form. I am tryinig to insert 18 textboxes in to an array , so I can only input values one time. My coding looks like this
VB.NET:
Dim t As Integer
t = 1
For i As Integer = 0 To 17
Inputmatrices(i) = TextBox(t).Text
t += 1
Next i
It doesn't allow me to generate different values for textboxes.
The error it say is textbox is a type and cannot be used as an expression, how do I make it an expression.
Thanks for the help