I'm sure the solution is simple but I don't know so I must ask.
I have a select case statement and I want to test for a range of values. In VB, I can do the following:
Select Case strTestValue
Case "2950" To "2959"
Blah
Case "29500"
Blah
Case Else
Blah Blah
End Select
In VBScript, it doesn't seem to like "Case "2950" To "2959"." I'm only able to test for specific values. Is there different syntax that will allow testing for a range of values?
Thanks!
I have a select case statement and I want to test for a range of values. In VB, I can do the following:
Select Case strTestValue
Case "2950" To "2959"
Blah
Case "29500"
Blah
Case Else
Blah Blah
End Select
In VBScript, it doesn't seem to like "Case "2950" To "2959"." I'm only able to test for specific values. Is there different syntax that will allow testing for a range of values?
Thanks!