|
-
May 9th, 2016, 04:19 PM
#1
Thread Starter
Junior Member
Shiny Progress bar alternative for StatusStrip
I have been using a wonderful shiny ColoredProgressBar made by gruff that can be found here. It took some time to get it to work properly in a splashscreen and now I would like to attempt to use it in a Status Strip. My project is VB.NET 4.5. I really have no idea if this can even be accomplished or if I just need to do this a different way. Any thoughts or suggestions are appreciated.
-
May 9th, 2016, 07:02 PM
#2
Re: Shiny Progress bar alternative for StatusStrip
 Originally Posted by philzy127
I have been using a wonderful shiny ColoredProgressBar made by gruff that can be found here. It took some time to get it to work properly in a splashscreen and now I would like to attempt to use it in a Status Strip. My project is VB.NET 4.5. I really have no idea if this can even be accomplished or if I just need to do this a different way. Any thoughts or suggestions are appreciated.
You can use a ToolStripControlHost to host your control, then add that to the strip, I tried it like this and seems to work OK,...
Code:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
StatusStrip1.Items.Add(New ToolStripControlHost(Me.PictureBox1))
End Sub
Tags for this Thread
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
|