SET /P var=" :" is possible
SET /P var=": " is possible
SET /P var=" " is possible, but still places the cursor at the
beginning of the screen and not 4 spaces ahead.
Basically I want the following screen:
Enter number:
<cursor here>
And not the screen:
Enter number: <cursor here>
Anybody has a clue ?
PROMPT $S didn't seem to help either...
> Basically I want the following screen:
> Enter number:
> <cursor here>
Use a non-printing space (Hex FF)
All the best, Timo
--
Prof. Timo Salmi mailto:t...@uwasa.fi ftp & http://garbo.uwasa.fi/
Hpage: http://www.uwasa.fi/laskentatoimi/english/personnel/salmitimo/
Department of Accounting and Finance, University of Vaasa, Finland
Useful CMD script tricks http://www.netikka.net/tsneti/info/tscmd.htm
>I'd like to use a prompt string that contains only spaces, but I can't
>seem to get it working.
>
>SET /P var=" :" is possible
>SET /P var=": " is possible
>SET /P var=" " is possible, but still places the cursor at the
>beginning of the screen and not 4 spaces ahead.
>
>
>Basically I want the following screen:
>Enter number:
> <cursor here>
set /p "var= "
> set /p "var= "
or
(set /p var= )