Quote Originally Posted by .paul. View Post
try this. x is the 1 to 10 loop variable, + y is the 11 to 2 variable:

Code:
For x As Integer = 1 To 10
    Dim y As Integer = 11 - (x - 1)
Next
Ahh... I didn't interpret the question that way. That makes more sense.