To answer the original question you could use;
is the acceptable way on the DOS version for a range test.
opc1:
Code:
Dim x As Integer For x = 1 To 26 ' for loop only added to show how each result is handled. Select Case x Case 6 To 11, 18 To 24, 26 ? "case 1" Case Else ? "case else" End Select Next x

Comment