I can't find any related posts here ... apologies if I've missed them...
I tried to create a for next loop inside a select end select block and it will not compile - here is some simple code that shows this:
Sub TestIt
Dim X2 As Int
Dim Y As Int
Y = 1
Select Y
Case 1
For X2 = 0 To 5
Next X2
Case 2
End Select
End Sub
Am I doing somthing wrong here or???
Mike
I tried to create a for next loop inside a select end select block and it will not compile - here is some simple code that shows this:
Sub TestIt
Dim X2 As Int
Dim Y As Int
Y = 1
Select Y
Case 1
For X2 = 0 To 5
Next X2
Case 2
End Select
End Sub
Am I doing somthing wrong here or???
Mike