Okay, I've looked but I can't work out arrays for textboxes and labels. So, using 2 textboxes, how do I do the following in VB.Net?
Code:
For x = 1 to 2
	if x = 1 then
	txtbox(x).text = "One"
	else
	txtbox(x).text = "Two"
	end if
next x
Any links, help out there? Thanks.