Id expect this to work (below) If iTestVar is 1, I'd expect DoStuff() to be fired. However it always falls into the else.
I have researched const in the past and found they can only be defined outside of classes. The select statement is inside the class.
'This is defined outside of the class (vbscript won't allow const inside classes)
Const STOPHERECONSTANT = 1
Select Case iTestVar
Case STOPHERECONSTANT
DoStuff()
Case Else
End Select