1.

Solve : Bach Programming Help?

Answer»

Hello,

I want to use a case structure with a batch file, but I don't KNOW how to work with variables.

I know it should look something like this:
Quote

show(Press 1 if you want to do A, 2 if you want to do B)
:label0
get X
if x==1 then goto label1
if x==2 then goto label2
ELSE show(invalid number, try again)
goto label0

:label1
[do A]
goto label_end
:label2
[do B]
goto label_end

:label_end


But I can't get how I create/define/make variables and how I get the INPUT value for that variable.

Could someone help me, please ?

obs:
Using Comand Prompt from WinServ2k3
:label0
::use set /p to get input, example
set /p x=Enter your CHOICE:
if "%x%"=="1" Goto Label1
if "%x%"=="2" Goto Label2
cls & echo You have made an invalid choice & Goto label0

:label1
:label2
Thanks!

Lemme just ask another question:
What is the difference between this:

Quote
cls & echo You have made an invalid choice & Goto label0

....and this:
Quote
cls
echo ...
goto label 0
?there isnt one, using & is the same as starting a new line so it LOOKS like
cls & echo You have made an invalid choice & Goto label0 but its really

cls
echo you have made an invalid choice
goto label0


Ahh! I tought it was something like that =)!

Thanks again!


Discussion

No Comment Found