|
-
Dec 2nd, 1999, 10:15 PM
#1
Thread Starter
Hyperactive Member
I need to place a progressbar inside a panel of a statusbar....
How do I do that ???
-
Dec 2nd, 1999, 10:40 PM
#2
Put this on Paint event of the form:
Code:
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
[email protected]
[email protected]
ICQ#: 51055819
-
Dec 2nd, 1999, 10:59 PM
#3
Thread Starter
Hyperactive Member
Works like a charm...
Help me out here.... I cdon't get the sngBorderWidth part....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|