Batch counter program shutting down
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
So I am making a counter and I am not sure how to make it work.. I have this right now with some other functions for customization purposes:
set /a current_value=current_value+incremental_value
but it does not work unfortunately..
The whole purpose is to use the pause >nul
function so when ever the user presses a key then the screen will show a number go up by the incremental value chosen earlier..
This is the whole script:
@echo off
cls
title Counter
:Incremental_Value
cls
echo./----------------------------------------------
echo.I Set the Incremental Value then press Enter I
echo.----------------------------------------------/
echo.
set /p %incremental_value%= [
:Starter_Value
cls
set current_value=%starter_value%
echo./------------------------------------------
echo.I Set the Starter Value then press Enter I
echo.------------------------------------------/
echo.
set /p %starter_value%= [
goto Counter
:Counter
cls
echo./-------------------
echo.I %current_value% I
echo.-------------------/
echo.
pause >nul
set /a current_value=current_value+incremental_value
goto Counter
Edit: I fixed the shutting down problem, but when you first get to the Counter screen the number does not appear. Once you hit a key it becomes zero (if you set the starting value to zero) then it wont add the incremental value if you continue to press the key.
batch-file
add a comment |
So I am making a counter and I am not sure how to make it work.. I have this right now with some other functions for customization purposes:
set /a current_value=current_value+incremental_value
but it does not work unfortunately..
The whole purpose is to use the pause >nul
function so when ever the user presses a key then the screen will show a number go up by the incremental value chosen earlier..
This is the whole script:
@echo off
cls
title Counter
:Incremental_Value
cls
echo./----------------------------------------------
echo.I Set the Incremental Value then press Enter I
echo.----------------------------------------------/
echo.
set /p %incremental_value%= [
:Starter_Value
cls
set current_value=%starter_value%
echo./------------------------------------------
echo.I Set the Starter Value then press Enter I
echo.------------------------------------------/
echo.
set /p %starter_value%= [
goto Counter
:Counter
cls
echo./-------------------
echo.I %current_value% I
echo.-------------------/
echo.
pause >nul
set /a current_value=current_value+incremental_value
goto Counter
Edit: I fixed the shutting down problem, but when you first get to the Counter screen the number does not appear. Once you hit a key it becomes zero (if you set the starting value to zero) then it wont add the incremental value if you continue to press the key.
batch-file
1
Can you post the script? There is not allot to work with here. I would suggest try putting the set within quotes, ex:set /a "current_value=current_value+incrimental_value"
– John Kens
Jan 3 at 4:57
It still shut down after that I will go ahead and put in the script
– Giovanni Barberio
Jan 3 at 5:01
I bet that command works OK (despite ii could be shorter :set /a current_value+=incremental_value
), most likely you are trying to use that new value in a code block without using delayed expansion. So show more of the context to prove this.
– LotPings
Jan 3 at 5:09
I also tried your shorter method and It did the same thing I explained in the edit
– Giovanni Barberio
Jan 3 at 5:18
add a comment |
So I am making a counter and I am not sure how to make it work.. I have this right now with some other functions for customization purposes:
set /a current_value=current_value+incremental_value
but it does not work unfortunately..
The whole purpose is to use the pause >nul
function so when ever the user presses a key then the screen will show a number go up by the incremental value chosen earlier..
This is the whole script:
@echo off
cls
title Counter
:Incremental_Value
cls
echo./----------------------------------------------
echo.I Set the Incremental Value then press Enter I
echo.----------------------------------------------/
echo.
set /p %incremental_value%= [
:Starter_Value
cls
set current_value=%starter_value%
echo./------------------------------------------
echo.I Set the Starter Value then press Enter I
echo.------------------------------------------/
echo.
set /p %starter_value%= [
goto Counter
:Counter
cls
echo./-------------------
echo.I %current_value% I
echo.-------------------/
echo.
pause >nul
set /a current_value=current_value+incremental_value
goto Counter
Edit: I fixed the shutting down problem, but when you first get to the Counter screen the number does not appear. Once you hit a key it becomes zero (if you set the starting value to zero) then it wont add the incremental value if you continue to press the key.
batch-file
So I am making a counter and I am not sure how to make it work.. I have this right now with some other functions for customization purposes:
set /a current_value=current_value+incremental_value
but it does not work unfortunately..
The whole purpose is to use the pause >nul
function so when ever the user presses a key then the screen will show a number go up by the incremental value chosen earlier..
This is the whole script:
@echo off
cls
title Counter
:Incremental_Value
cls
echo./----------------------------------------------
echo.I Set the Incremental Value then press Enter I
echo.----------------------------------------------/
echo.
set /p %incremental_value%= [
:Starter_Value
cls
set current_value=%starter_value%
echo./------------------------------------------
echo.I Set the Starter Value then press Enter I
echo.------------------------------------------/
echo.
set /p %starter_value%= [
goto Counter
:Counter
cls
echo./-------------------
echo.I %current_value% I
echo.-------------------/
echo.
pause >nul
set /a current_value=current_value+incremental_value
goto Counter
Edit: I fixed the shutting down problem, but when you first get to the Counter screen the number does not appear. Once you hit a key it becomes zero (if you set the starting value to zero) then it wont add the incremental value if you continue to press the key.
batch-file
batch-file
edited Jan 3 at 5:15
Giovanni Barberio
asked Jan 3 at 4:41


Giovanni BarberioGiovanni Barberio
12
12
1
Can you post the script? There is not allot to work with here. I would suggest try putting the set within quotes, ex:set /a "current_value=current_value+incrimental_value"
– John Kens
Jan 3 at 4:57
It still shut down after that I will go ahead and put in the script
– Giovanni Barberio
Jan 3 at 5:01
I bet that command works OK (despite ii could be shorter :set /a current_value+=incremental_value
), most likely you are trying to use that new value in a code block without using delayed expansion. So show more of the context to prove this.
– LotPings
Jan 3 at 5:09
I also tried your shorter method and It did the same thing I explained in the edit
– Giovanni Barberio
Jan 3 at 5:18
add a comment |
1
Can you post the script? There is not allot to work with here. I would suggest try putting the set within quotes, ex:set /a "current_value=current_value+incrimental_value"
– John Kens
Jan 3 at 4:57
It still shut down after that I will go ahead and put in the script
– Giovanni Barberio
Jan 3 at 5:01
I bet that command works OK (despite ii could be shorter :set /a current_value+=incremental_value
), most likely you are trying to use that new value in a code block without using delayed expansion. So show more of the context to prove this.
– LotPings
Jan 3 at 5:09
I also tried your shorter method and It did the same thing I explained in the edit
– Giovanni Barberio
Jan 3 at 5:18
1
1
Can you post the script? There is not allot to work with here. I would suggest try putting the set within quotes, ex:
set /a "current_value=current_value+incrimental_value"
– John Kens
Jan 3 at 4:57
Can you post the script? There is not allot to work with here. I would suggest try putting the set within quotes, ex:
set /a "current_value=current_value+incrimental_value"
– John Kens
Jan 3 at 4:57
It still shut down after that I will go ahead and put in the script
– Giovanni Barberio
Jan 3 at 5:01
It still shut down after that I will go ahead and put in the script
– Giovanni Barberio
Jan 3 at 5:01
I bet that command works OK (despite ii could be shorter :
set /a current_value+=incremental_value
), most likely you are trying to use that new value in a code block without using delayed expansion. So show more of the context to prove this.– LotPings
Jan 3 at 5:09
I bet that command works OK (despite ii could be shorter :
set /a current_value+=incremental_value
), most likely you are trying to use that new value in a code block without using delayed expansion. So show more of the context to prove this.– LotPings
Jan 3 at 5:09
I also tried your shorter method and It did the same thing I explained in the edit
– Giovanni Barberio
Jan 3 at 5:18
I also tried your shorter method and It did the same thing I explained in the edit
– Giovanni Barberio
Jan 3 at 5:18
add a comment |
2 Answers
2
active
oldest
votes
A very simple issue you had was the improper use of the set /p
command. When using set /p
, you do not specify the string as set /p %String%=
but rather set /p String=
. For more information on the set command try typing set /?
into a command prompt.
Another issue, not problem is that you have :Incremental_Value
& :Starter_Value
but you never call
or goto
them in the script. The only place you properly did this was with goto Counter
. Unless you are going to individually goto
/call
them later, just remove them; or use goto :Starter_Value
- exc.
In the future, try using echo(
instead of echo.
to call a blank space in the window.
Counter.bat
@echo off
title Counter With Incremental Progression
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Starter Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p starter_value=Value:
cls
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Incremental Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p incremental_value=Value:
Set "current_value=%starter_value%"
:Counter
cls
echo Current Number: %current_value%
echo(
pause >nul
set /a "current_value=current_value+incremental_value"
goto Counter
PS: Switch the file encoding to ANSI
for fun boxes - :-)
1
Please note that you have to quote the whole variable set inset /a
. Also, please note that there are+=
,-=
, e.t.c. operators in batch file. Please checkset /?
.
– double-beep
Jan 3 at 10:07
@double-beep You just repeated what I original told the OP. I got lazy I will admit and did not do it on my script - However, for integers it is not needed and is perfectly fine. For the+=
operator, my alternative is perfectly fine and has an equal impact to the scripts functionality. However, to appease you I went ahead and quoted myset
command. Thanks for the point out.
– John Kens
Jan 3 at 17:46
1
Well, I know... This has happened to me also.
– double-beep
Jan 3 at 17:58
add a comment |
Well, if you wanna keep the layout:
@echo off && setlocal enableextensions enabledelayedexpansion & cls
title Counter
:_Incremental_Value
cls
echo/
echo//----------------------------------------------
echo/^| Set the Incremental Value then press Enter ^|
echo/----------------------------------------------/
echo/
set /p _incremental_value= ^|
if "!_incremental_value!" equ "" goto :_Incremental_Value
:_Starter_Value
cls
echo/
echo//------------------------------------------
echo/^| Set the Starter Value then press Enter ^|
echo/------------------------------------------/
echo/
set /p _starter_value= ^|
if "!_starter_value!" equ "" goto :_Starter_Value
set /a _current_value=!_starter_value!
goto :_Counter
:_Counter
cls
echo/
echo//-------------------
echo/^| !_current_value! ^|
echo/-------------------/
echo/
call pause >nul
set /a _current_value=!_current_value! + !_incremental_value!
title Counter: !_current_value!
goto :_Counter
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016437%2fbatch-counter-program-shutting-down%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
A very simple issue you had was the improper use of the set /p
command. When using set /p
, you do not specify the string as set /p %String%=
but rather set /p String=
. For more information on the set command try typing set /?
into a command prompt.
Another issue, not problem is that you have :Incremental_Value
& :Starter_Value
but you never call
or goto
them in the script. The only place you properly did this was with goto Counter
. Unless you are going to individually goto
/call
them later, just remove them; or use goto :Starter_Value
- exc.
In the future, try using echo(
instead of echo.
to call a blank space in the window.
Counter.bat
@echo off
title Counter With Incremental Progression
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Starter Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p starter_value=Value:
cls
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Incremental Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p incremental_value=Value:
Set "current_value=%starter_value%"
:Counter
cls
echo Current Number: %current_value%
echo(
pause >nul
set /a "current_value=current_value+incremental_value"
goto Counter
PS: Switch the file encoding to ANSI
for fun boxes - :-)
1
Please note that you have to quote the whole variable set inset /a
. Also, please note that there are+=
,-=
, e.t.c. operators in batch file. Please checkset /?
.
– double-beep
Jan 3 at 10:07
@double-beep You just repeated what I original told the OP. I got lazy I will admit and did not do it on my script - However, for integers it is not needed and is perfectly fine. For the+=
operator, my alternative is perfectly fine and has an equal impact to the scripts functionality. However, to appease you I went ahead and quoted myset
command. Thanks for the point out.
– John Kens
Jan 3 at 17:46
1
Well, I know... This has happened to me also.
– double-beep
Jan 3 at 17:58
add a comment |
A very simple issue you had was the improper use of the set /p
command. When using set /p
, you do not specify the string as set /p %String%=
but rather set /p String=
. For more information on the set command try typing set /?
into a command prompt.
Another issue, not problem is that you have :Incremental_Value
& :Starter_Value
but you never call
or goto
them in the script. The only place you properly did this was with goto Counter
. Unless you are going to individually goto
/call
them later, just remove them; or use goto :Starter_Value
- exc.
In the future, try using echo(
instead of echo.
to call a blank space in the window.
Counter.bat
@echo off
title Counter With Incremental Progression
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Starter Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p starter_value=Value:
cls
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Incremental Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p incremental_value=Value:
Set "current_value=%starter_value%"
:Counter
cls
echo Current Number: %current_value%
echo(
pause >nul
set /a "current_value=current_value+incremental_value"
goto Counter
PS: Switch the file encoding to ANSI
for fun boxes - :-)
1
Please note that you have to quote the whole variable set inset /a
. Also, please note that there are+=
,-=
, e.t.c. operators in batch file. Please checkset /?
.
– double-beep
Jan 3 at 10:07
@double-beep You just repeated what I original told the OP. I got lazy I will admit and did not do it on my script - However, for integers it is not needed and is perfectly fine. For the+=
operator, my alternative is perfectly fine and has an equal impact to the scripts functionality. However, to appease you I went ahead and quoted myset
command. Thanks for the point out.
– John Kens
Jan 3 at 17:46
1
Well, I know... This has happened to me also.
– double-beep
Jan 3 at 17:58
add a comment |
A very simple issue you had was the improper use of the set /p
command. When using set /p
, you do not specify the string as set /p %String%=
but rather set /p String=
. For more information on the set command try typing set /?
into a command prompt.
Another issue, not problem is that you have :Incremental_Value
& :Starter_Value
but you never call
or goto
them in the script. The only place you properly did this was with goto Counter
. Unless you are going to individually goto
/call
them later, just remove them; or use goto :Starter_Value
- exc.
In the future, try using echo(
instead of echo.
to call a blank space in the window.
Counter.bat
@echo off
title Counter With Incremental Progression
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Starter Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p starter_value=Value:
cls
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Incremental Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p incremental_value=Value:
Set "current_value=%starter_value%"
:Counter
cls
echo Current Number: %current_value%
echo(
pause >nul
set /a "current_value=current_value+incremental_value"
goto Counter
PS: Switch the file encoding to ANSI
for fun boxes - :-)
A very simple issue you had was the improper use of the set /p
command. When using set /p
, you do not specify the string as set /p %String%=
but rather set /p String=
. For more information on the set command try typing set /?
into a command prompt.
Another issue, not problem is that you have :Incremental_Value
& :Starter_Value
but you never call
or goto
them in the script. The only place you properly did this was with goto Counter
. Unless you are going to individually goto
/call
them later, just remove them; or use goto :Starter_Value
- exc.
In the future, try using echo(
instead of echo.
to call a blank space in the window.
Counter.bat
@echo off
title Counter With Incremental Progression
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Starter Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p starter_value=Value:
cls
echo ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
echo º Set the Incremental Value then press Enter º
echo ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
echo(
set /p incremental_value=Value:
Set "current_value=%starter_value%"
:Counter
cls
echo Current Number: %current_value%
echo(
pause >nul
set /a "current_value=current_value+incremental_value"
goto Counter
PS: Switch the file encoding to ANSI
for fun boxes - :-)
edited Jan 3 at 17:44
answered Jan 3 at 6:30


John KensJohn Kens
1,1921322
1,1921322
1
Please note that you have to quote the whole variable set inset /a
. Also, please note that there are+=
,-=
, e.t.c. operators in batch file. Please checkset /?
.
– double-beep
Jan 3 at 10:07
@double-beep You just repeated what I original told the OP. I got lazy I will admit and did not do it on my script - However, for integers it is not needed and is perfectly fine. For the+=
operator, my alternative is perfectly fine and has an equal impact to the scripts functionality. However, to appease you I went ahead and quoted myset
command. Thanks for the point out.
– John Kens
Jan 3 at 17:46
1
Well, I know... This has happened to me also.
– double-beep
Jan 3 at 17:58
add a comment |
1
Please note that you have to quote the whole variable set inset /a
. Also, please note that there are+=
,-=
, e.t.c. operators in batch file. Please checkset /?
.
– double-beep
Jan 3 at 10:07
@double-beep You just repeated what I original told the OP. I got lazy I will admit and did not do it on my script - However, for integers it is not needed and is perfectly fine. For the+=
operator, my alternative is perfectly fine and has an equal impact to the scripts functionality. However, to appease you I went ahead and quoted myset
command. Thanks for the point out.
– John Kens
Jan 3 at 17:46
1
Well, I know... This has happened to me also.
– double-beep
Jan 3 at 17:58
1
1
Please note that you have to quote the whole variable set in
set /a
. Also, please note that there are +=
, -=
, e.t.c. operators in batch file. Please check set /?
.– double-beep
Jan 3 at 10:07
Please note that you have to quote the whole variable set in
set /a
. Also, please note that there are +=
, -=
, e.t.c. operators in batch file. Please check set /?
.– double-beep
Jan 3 at 10:07
@double-beep You just repeated what I original told the OP. I got lazy I will admit and did not do it on my script - However, for integers it is not needed and is perfectly fine. For the
+=
operator, my alternative is perfectly fine and has an equal impact to the scripts functionality. However, to appease you I went ahead and quoted my set
command. Thanks for the point out.– John Kens
Jan 3 at 17:46
@double-beep You just repeated what I original told the OP. I got lazy I will admit and did not do it on my script - However, for integers it is not needed and is perfectly fine. For the
+=
operator, my alternative is perfectly fine and has an equal impact to the scripts functionality. However, to appease you I went ahead and quoted my set
command. Thanks for the point out.– John Kens
Jan 3 at 17:46
1
1
Well, I know... This has happened to me also.
– double-beep
Jan 3 at 17:58
Well, I know... This has happened to me also.
– double-beep
Jan 3 at 17:58
add a comment |
Well, if you wanna keep the layout:
@echo off && setlocal enableextensions enabledelayedexpansion & cls
title Counter
:_Incremental_Value
cls
echo/
echo//----------------------------------------------
echo/^| Set the Incremental Value then press Enter ^|
echo/----------------------------------------------/
echo/
set /p _incremental_value= ^|
if "!_incremental_value!" equ "" goto :_Incremental_Value
:_Starter_Value
cls
echo/
echo//------------------------------------------
echo/^| Set the Starter Value then press Enter ^|
echo/------------------------------------------/
echo/
set /p _starter_value= ^|
if "!_starter_value!" equ "" goto :_Starter_Value
set /a _current_value=!_starter_value!
goto :_Counter
:_Counter
cls
echo/
echo//-------------------
echo/^| !_current_value! ^|
echo/-------------------/
echo/
call pause >nul
set /a _current_value=!_current_value! + !_incremental_value!
title Counter: !_current_value!
goto :_Counter
add a comment |
Well, if you wanna keep the layout:
@echo off && setlocal enableextensions enabledelayedexpansion & cls
title Counter
:_Incremental_Value
cls
echo/
echo//----------------------------------------------
echo/^| Set the Incremental Value then press Enter ^|
echo/----------------------------------------------/
echo/
set /p _incremental_value= ^|
if "!_incremental_value!" equ "" goto :_Incremental_Value
:_Starter_Value
cls
echo/
echo//------------------------------------------
echo/^| Set the Starter Value then press Enter ^|
echo/------------------------------------------/
echo/
set /p _starter_value= ^|
if "!_starter_value!" equ "" goto :_Starter_Value
set /a _current_value=!_starter_value!
goto :_Counter
:_Counter
cls
echo/
echo//-------------------
echo/^| !_current_value! ^|
echo/-------------------/
echo/
call pause >nul
set /a _current_value=!_current_value! + !_incremental_value!
title Counter: !_current_value!
goto :_Counter
add a comment |
Well, if you wanna keep the layout:
@echo off && setlocal enableextensions enabledelayedexpansion & cls
title Counter
:_Incremental_Value
cls
echo/
echo//----------------------------------------------
echo/^| Set the Incremental Value then press Enter ^|
echo/----------------------------------------------/
echo/
set /p _incremental_value= ^|
if "!_incremental_value!" equ "" goto :_Incremental_Value
:_Starter_Value
cls
echo/
echo//------------------------------------------
echo/^| Set the Starter Value then press Enter ^|
echo/------------------------------------------/
echo/
set /p _starter_value= ^|
if "!_starter_value!" equ "" goto :_Starter_Value
set /a _current_value=!_starter_value!
goto :_Counter
:_Counter
cls
echo/
echo//-------------------
echo/^| !_current_value! ^|
echo/-------------------/
echo/
call pause >nul
set /a _current_value=!_current_value! + !_incremental_value!
title Counter: !_current_value!
goto :_Counter
Well, if you wanna keep the layout:
@echo off && setlocal enableextensions enabledelayedexpansion & cls
title Counter
:_Incremental_Value
cls
echo/
echo//----------------------------------------------
echo/^| Set the Incremental Value then press Enter ^|
echo/----------------------------------------------/
echo/
set /p _incremental_value= ^|
if "!_incremental_value!" equ "" goto :_Incremental_Value
:_Starter_Value
cls
echo/
echo//------------------------------------------
echo/^| Set the Starter Value then press Enter ^|
echo/------------------------------------------/
echo/
set /p _starter_value= ^|
if "!_starter_value!" equ "" goto :_Starter_Value
set /a _current_value=!_starter_value!
goto :_Counter
:_Counter
cls
echo/
echo//-------------------
echo/^| !_current_value! ^|
echo/-------------------/
echo/
call pause >nul
set /a _current_value=!_current_value! + !_incremental_value!
title Counter: !_current_value!
goto :_Counter
answered Jan 3 at 19:51


It Wasn't MeIt Wasn't Me
4871520
4871520
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016437%2fbatch-counter-program-shutting-down%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Can you post the script? There is not allot to work with here. I would suggest try putting the set within quotes, ex:
set /a "current_value=current_value+incrimental_value"
– John Kens
Jan 3 at 4:57
It still shut down after that I will go ahead and put in the script
– Giovanni Barberio
Jan 3 at 5:01
I bet that command works OK (despite ii could be shorter :
set /a current_value+=incremental_value
), most likely you are trying to use that new value in a code block without using delayed expansion. So show more of the context to prove this.– LotPings
Jan 3 at 5:09
I also tried your shorter method and It did the same thing I explained in the edit
– Giovanni Barberio
Jan 3 at 5:18