From what I know, the only way is this one:
Code:
Select var
Case 0,1,2,3,4,5
Case 6,7,8,9,10
End Select
In Visual Basic it is possible with
Code:
Select Case var
Case 0 To 5
Case 6 To 10
End Select
Erel, couldn't this be an intersting feature ?
Best regards.