DotNetBar Circular Progress Bar - Marquee
There is a question that I have from YEARS after working with DotNetBar Components that I want to ask you...
How do you set the Marquee style of a normal progress bar on the circular one? The circular progress bar from DotNetBar, i want to be clear.
There is no "Style" Property and now I really need to know it for a project I'm doing now!
:sick::eek::confused::eek2:
(VB.NET 2010)
Re: DotNetBar Circular Progress Bar - Marquee
Quote:
Originally Posted by From_Their_Help
Mode – Either Percent or Endless.
linky dinky doo - http://www.devcomponents.com/kb2/?p=1117
-tg
Re: DotNetBar Circular Progress Bar - Marquee
Quote:
Originally Posted by
techgnome
That isn't the right one :( I'm talking about DotNetBar Components.
linky dinky doo :P http://www.devcomponents.com/dotnetb...ssControl.aspx
Re: DotNetBar Circular Progress Bar - Marquee
Oh, finally found it!!
vb Code:
CircularProgress1.IsRunning = True
That's it!!! OMG!! That was drivin me crazy!!
Re: DotNetBar Circular Progress Bar - Marquee
Hi, I did a little modification from your code. I already added timer that after 5 seconds, the program will automatically display message. Hope this very helpful to everyone.
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
CircularProgress1.IsRunning = True
Timer1.Start()
End Sub
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
If Timer1.Interval = 5000 Then
CircularProgress1.IsRunning = False
Timer1.Stop()
MessageBox.Show("done")
End If
Visit http://tesear.com