vote up 1 vote down star

Hi all, Can anyone please tell me how do we implement select statement in vbscripts same as the way switch statement are done in C language.It would be great if i can get it with some examples as i am pretty new to vbscripts

Thanks and regards Maddy

flag

2 Answers

vote up 6 vote down
Select Case foo
    Case 1
       MsgBox "1"
    Case 2, 3
       MsgBox "2 or 3"
    Case Else
       MsgBox "Something else"
End Select
link|flag
Gary,Thanks a lot.Since i am just a beginner,got some probs with getting used to vbscripts. – Maddy Jul 14 at 10:06
vote up 0 vote down

example only

 Select Case strMyVariable
      Case "One"     Wscript.Echo "1"
      Case "Two"     Wscript.Echo "2"
      Case "Three"   Wscript.Echo "3"
      Case Else      Wscript.Echo "Wrong"
 End Select
link|flag
Ghostdog,I just got another doubt.Are there any break statements associated with each case?? – Maddy Jul 14 at 10:09
Nope no break in VBScript, often wondered why it exists in other languages? – MrTelly Jul 14 at 10:17
@MrTelly: Goes back to old C (pre C++) days where any small opporunity to save a few bytes in the code were considered worthwhile despite the potential spaggetti it could create. – AnthonyWJones Jul 14 at 10:33
Thanks everybody – Maddy Jul 14 at 10:54
@Maddy, in response to your questions, as MrTelly said, no breaks in case select, but you can do "break" in for loops. – ghostdog74 Jul 14 at 11:04

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.