PDA

Click to See Complete Forum and Search --> : How can I place a progressbar inside a panel of a statusbar


Inhumanoid
Dec 2nd, 1999, 09:15 PM
I need to place a progressbar inside a panel of a statusbar....
How do I do that ???

Serge
Dec 2nd, 1999, 09:40 PM
Put this on Paint event of the form:


Private Sub Form_Paint()
Dim sngBorderWidth As Single

'Determine Border Width - May need to be adjusted if a different border style is used
sngBorderWidth = (Width - ScaleWidth) / 4

ProgressBar1.Move StatusBar1.Panels(1).Left, StatusBar1.Top + sngBorderWidth, StatusBar1.Panels(1).Width, StatusBar1.Height - sngBorderWidth
End Sub



Just substitute the StatusBar1 and ProgressBar1 with the appropriate names.
Also, subsitute the Panel number to the appropriate one.

Regards,

------------------

Serge

Software Developer
Serge_Dymkov@vertexinc.com
Access8484@aol.com
ICQ#: 51055819 (http://www.icq.com/51055819)

Inhumanoid
Dec 2nd, 1999, 09:59 PM
Works like a charm...

Help me out here.... I cdon't get the sngBorderWidth part....