From: Eric H. <Ha...@sw...> - 2002-06-25 19:24:07
|
Yes you can devide a status bar. The below code shows how I use half the = status bar for text and half for a progress bar. $Status =3D $W->AddStatusBar( -name =3D> "Status", -text =3D> " ", -font =3D> $SFont, ); $Progress =3D new Win32::GUI::ProgressBar($Status, -name =3D> "Progress", -width =3D> $Status->Width/2, -height =3D> $Status->Height-3, -left =3D> $Status->Width/2, -top =3D> 2, ); Regards, Eric=20 Garland, Texas USA |