Hi All,

Good stuf about that progress bar. I used the code from Icar to polish things up. It can also been done withe Shawn's code.

Code
__________________________________________________________________________________________

BREAK ON
CLS
AT(9,22) "Starting Windows in progress..."
BOX(10,10,12,65,"single")
$COL = 12
WHILE $COL < 64
COLOR c+/c
AT(11,$COL) CHR(16)
$COL = $COL + 1
$Y = 100 * ($COL - 12) / 52
IF ($COL & RND() ) = 0 ; simulate activiity
SLEEP 1
ENDIF
COLOR w/n
AT(13,37) "$Y %"
LOOP
AT(15,0) "Hit any key to continue..." get $k
EXIT

__________________________________________________________________________________________

I like polishing

Jos