Click here to Skip to main content
Click here to Skip to main content

SQL Server 2005 Circular Progress Bar

By , 26 Sep 2006
 

Sample Image - sql2005circularprogress.jpg

Introduction

After initially searching for the animation used in SQL Server 2005 as an AVI or GIF, I stumbled across the excellent article by Amr Aly Elsehemy, here at The Code Project. Although good code, and indeed a starting point for what I have created, it didn't actually replicate the look and feel of the Microsoft SQL Server 2005 'busy' animation.

At less than 220 lines, I think that this control is pretty compact, and it seems to perform well, even when other threads in my application are busy.

Code

I store each 'segment' of the progress bar in an array, this makes it easy to iterate through later.

Private segmentPaths(11) As Drawing2D.GraphicsPath

The segments are initialized in the CalculateSegments method, which is called when the control is initialized or resized. This method also generates a region which is used to clip the center circle back out when painting the control.

'Create 12 segment pieces
For intCount As Integer = 0 To 11
    secmentPaths(intCount) = New Drawing2D.GraphicsPath

    'We subtract 90 so that the starting segment is at 12 o'clock
    secmentPaths(intCount).AddPie(rctFull, (intCount * 30) - 90, 25)
Next

The ProgressDisk_Paint method is where all the real work goes on (with the exception of the automatic iteration). I think the code speaks for itself, especially the comments :-)

e.Graphics.SmoothingMode = Drawing2D.SmoothingMode.AntiAlias
e.Graphics.ExcludeClip(innerBackgroundRegion)

For intCount As Integer = 0 To 11
    If Me.Enabled Then
        If intCount = m_TransitionSegment Then
            'If this segment is the transistion segment, colour it differently
            e.Graphics.FillPath(New SolidBrush(m_TransistionColour), _
                                segmentPaths(intCount))
        ElseIf intCount < m_TransitionSegment Then
            'This segment is behind the transistion segment
            If m_BehindIsActive Then
                'If behind the transistion should be active, 
                'colour it with the active colour
                e.Graphics.FillPath(New SolidBrush(m_ActiveColour),_
                                    segmentPaths(intCount))
            Else
                'If behind the transistion should be in-active, 
                'colour it with the in-active colour
                e.Graphics.FillPath(New SolidBrush(m_InactiveColour), _
                                    segmentPaths(intCount))
            End If
        Else
            'This segment is ahead of the transistion segment
            If m_BehindIsActive Then
                'If behind the the transistion should be active, 
                'colour it with the in-active colour
                e.Graphics.FillPath(New SolidBrush(m_InactiveColour),_
                                    segmentPaths(intCount))
            Else
                'If behind the the transistion should be in-active, 
                'colour it with the active colour
                e.Graphics.FillPath(New SolidBrush(m_ActiveColour),_
                                    segmentPaths(intCount))
            End If
        End If
    Else
        'Draw all segments in in-active colour if not enabled
        e.Graphics.FillPath(New SolidBrush(m_InactiveColour), _
                            segmentPaths(intCount))
    End If
Next
The only other real work is done by the timer increment, which is fired by default every 100ms, but this is exposed as a property.
If m_TransitionSegment = 11 Then
    m_TransitionSegment = 0
    m_BehindIsActive = Not m_BehindIsActive
ElseIf m_TransitionSegment = -1 Then
    m_TransitionSegment = 0
Else
    m_TransitionSegment += 1
End If

Invalidate()

The m_BehindIsActive variable decided whether all the segments behind (anti-clockwise) the transision segment (the segment currently changing colour) should be coloured using the active or inactive colour, both of which are user definable.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

ateece
Architect eNate Ltd
United Kingdom United Kingdom
Member
Technical Architect for an expanding software company in the UK. Andrew has spearheaded the development for an internationally used, enterprise-class business process management system built in .Net.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralGreat WorkmemberALDER_MORIGGI10 Sep '12 - 23:25 
QuestionHow to add and make use of control in existing projectmemberGary6127 Sep '11 - 3:50 
AnswerRe: How to add and make use of control in existing projectmemberateece3 Oct '11 - 1:36 
QuestionCannot post SpinningProgress object to a VIsual Studio 2008 visual basic applicationmemberspicture3 Sep '11 - 4:51 
AnswerRe: Cannot post SpinningProgress object to a VIsual Studio 2008 visual basic applicationmemberateece4 Sep '11 - 22:08 
GeneralMy vote of 5memberSaumitra Kumar Paul9 Jul '11 - 22:40 
GeneralExcellent postmembervatsag9 Feb '11 - 23:39 
GeneralExcellent control!memberFritz4426 Jan '11 - 14:39 
GeneralJust what i was looking formemberstrogg9 Oct '09 - 9:13 
GeneralWill not show/hide properlymemberMember 326993925 Sep '09 - 5:37 
GeneralThanksmemberGlimmerMan9 Mar '09 - 9:49 
GeneralAssembly generation failed -- Referenced assembly 'SpinningProgress' does not have a strong namememberblizznet26 Feb '09 - 8:37 
QuestionTransparent background ?memberyfrechette26 Nov '08 - 8:06 
GeneralThis is ExcellentmemberMember 445279620 Oct '08 - 10:02 
GeneralQuestion about threading.memberRash101018 Aug '08 - 6:44 
GeneralRe: Question about threading.memberateece19 Aug '08 - 2:51 
GeneralCannot get this working using MultithreadingmemberSK2008VB25 Jun '08 - 5:12 
GeneralRe: Cannot get this working using Multithreadingmemberateece26 Jun '08 - 23:46 
GeneralExcellentmembergnixon29 May '08 - 6:52 
GeneralI got stuck on multithreading..............memberAshStuff29 Apr '08 - 0:03 
GeneralRe: I get stuck on multithreading..............memberateece29 Apr '08 - 0:09 
QuestionSlight Problem?memberTraderJack14 Feb '08 - 23:36 
AnswerRe: Slight Problem?memberateece15 Feb '08 - 2:36 
GeneralRe: Slight Problem?memberTraderJack15 Feb '08 - 10:13 
GeneralRe: Slight Problem?memberateece15 Feb '08 - 10:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 26 Sep 2006
Article Copyright 2006 by ateece
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid