i have the following script which is run from another script but i am testing it stand alone.
so the value of $in1 is 0 therefore in the select statement if $logonto is 0 which it is, then
i should get the inputbox message.. I don't get that message
i should have even gotten the case else which i did not
so the value of $in1 is 0 therefore in the select statement if $logonto is 0 which it is, then
i should get the inputbox message.. I don't get that message
i should have even gotten the case else which i did not
$in1 = 0 if $cmdline[0] > 0 then $in1 = $cmdline[1] endif $logonto = $in1 select case $logonto = "lon" case $logonto = "bos" case $logonto = "syn" case $logonto = "tok" case $logonto = 0 $logonto = inputbox("","enter location") case else $logonto = inputbox("","enter location") endselect