is there any other way
that I can convert
somthing like ...
select case strTemp
case "A" to "Z"
blnCorrect = true
case else
blnCorrect = false
end select
into a if then else without
going if strTemp = "A" or strTemp = "B" or strTemp = "C" or ...
thanks in advance
-----= Posted via Newsfeeds.Com, Uncensored Usenet News =-----
http://www.newsfeeds.com - The #1 Newsgroup Service in the World!
-----== Over 80,000 Newsgroups - 16 Different Servers! =-----
"Brett Halligan" <ngpos...@yahoo.com> wrote in message
news:nfrdntchd4cocgi8i...@4ax.com...
erm msdn didnt dislplay it
I must have looked in the wrong place, thanks :)
--
Michael Harris
Microsoft.MVP.Scripting
--
mik...@mvps.org
Please do not email questions - post them to the newsgroup instead.
--
"Brett Halligan" <ngpos...@yahoo.com> wrote in message
news:nfrdntchd4cocgi8i...@4ax.com...
This is completely legal in VBScript:
Select Case <testexpression>
Case <expressionlist>
<statementblock-1>
Case <expressionlist>
<statementblock-2>
Case Else
<statementblock-n>
End Select
Regards,
Torgeir