Results 1 to 2 of 2

Thread: Shiny Progress bar alternative for StatusStrip

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Apr 2016
    Posts
    19

    Question 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.

  2. #2
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Shiny Progress bar alternative for StatusStrip

    Quote Originally Posted by philzy127 View Post
    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
  •  



Click Here to Expand Forum to Full Width