You the man ... hows this looking for easy-on-the-eye ?

Break On

$LoginBox = CreateObject("Kixtart.LoginBox")

$LoginBox.Caption = "Installing Applications"
$LoginBox.MinButton = 0
$LoginBox.MaxButton = 0
$LoginBox.SysMenu = 0
$LoginBox.Width = 400
$LoginBox.Height = 200

$Status = $LoginBox.AddLabel(320,10,70,20,"[12 of 15]")
$Display = $LoginBox.AddLabel(10,35,380,60,"Message")
$Message = $LoginBox.AddLabel(10,80,380,20,"Status")
$PBar = $LoginBox.AddProgressBar(10,120,370,30,"")

$LoginBox.Center
$LoginBox.Show

For $i = 1 To 100 Step 2
 $PBar.Value = $i
 Sleep (0.2)
Next

Exit 1


Does it read ok ?

[ 17 June 2002, 06:05: Message edited by: Shawn ]