Like this is an example of rectangular box
Code:
@echo off
color 0A
setlocal EnableDelayedExpansion
set Counter=10
set Schalter=100
set Width=100
:1
set /a Counter=%Counter% + 1
set /a Display=%Counter% / 2
FOR /L %%A IN (1,1,%Display%) DO (
set Display=!Display!█
)
cls
echo Loading... %Counter%%%
echo █!Display:~2,47!
ping localhost -n 1 >nul
if "%Counter%" == "93" endlocal & goto End
goto 1
:End
cls
And if such is this possible in batch to make circular progress bars??
How to make such with circular progress bar......????