Results 1 to 5 of 5

Thread: DotNetBar Circular Progress Bar - Marquee

  1. #1

    Thread Starter
    New Member
    Join Date
    Jan 2012
    Posts
    13

    Arrow 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!

    (VB.NET 2010)

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    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
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3

    Thread Starter
    New Member
    Join Date
    Jan 2012
    Posts
    13

    Re: DotNetBar Circular Progress Bar - Marquee

    Quote Originally Posted by techgnome View Post
    That isn't the right one I'm talking about DotNetBar Components.
    linky dinky doo :P http://www.devcomponents.com/dotnetb...ssControl.aspx

  4. #4

    Thread Starter
    New Member
    Join Date
    Jan 2012
    Posts
    13

    Re: DotNetBar Circular Progress Bar - Marquee

    Oh, finally found it!!
    vb Code:
    1. CircularProgress1.IsRunning = True

    That's it!!! OMG!! That was drivin me crazy!!

  5. #5

    Thumbs up 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

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