Search found 1 match
- 25 Sep 2013 11:12
- Forum: DOS Batch Forum
- Topic: Choice listen to spacebar
- Replies: 6
- Views: 11341
Re: Choice listen to spacebar
You cannot. Choice will not listen for anything not in the list specified by the /c command argument besides Escape and Ctrl+Break. :start CHOICE /C:10 /N /T:1,10 /m "Press Esc to Continue" IF ERRORLEVEL == 2 GOTO start IF ERRORLEVEL == 1 GOTO end IF ERRORLEVEL == 0 GOTO ESC :end echo. ech...