Click here to Skip to main content
15,881,709 members
Articles / Multimedia / GDI+
Article

SQL Server 2005 Circular Progress Bar

Rate me:
Please Sign up or sign in to vote.
4.86/5 (68 votes)
26 Sep 2006CPOL1 min read 266.2K   10.4K   201   77
Shows a spinning progress bar, identical to the SQL Server 2005 busy indicator, without requiring any code.

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.

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

VB
'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 :-)

VB
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.
VB
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)


Written By
Architect eNate Ltd
United Kingdom United Kingdom
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.

Comments and Discussions

 
Questionmemory leak Pin
polishz39-Feb-14 16:52
polishz39-Feb-14 16:52 
AnswerRe: memory leak Pin
ateece10-Feb-14 7:06
ateece10-Feb-14 7:06 
GeneralRe: memory leak Pin
polishz311-Feb-14 0:59
polishz311-Feb-14 0:59 
QuestionUse like a progressbar Pin
ichilouch21-May-13 3:21
ichilouch21-May-13 3:21 
GeneralGreat Work Pin
ALDER_MORIGGI10-Sep-12 23:25
ALDER_MORIGGI10-Sep-12 23:25 
QuestionHow to add and make use of control in existing project Pin
Gary6127-Sep-11 3:50
Gary6127-Sep-11 3:50 
AnswerRe: How to add and make use of control in existing project Pin
ateece3-Oct-11 1:36
ateece3-Oct-11 1:36 
QuestionCannot post SpinningProgress object to a VIsual Studio 2008 visual basic application Pin
spicture3-Sep-11 4:51
spicture3-Sep-11 4:51 
AnswerRe: Cannot post SpinningProgress object to a VIsual Studio 2008 visual basic application Pin
ateece4-Sep-11 22:08
ateece4-Sep-11 22:08 
GeneralMy vote of 5 Pin
Saumitra Kumar Paul9-Jul-11 22:40
Saumitra Kumar Paul9-Jul-11 22:40 
GeneralExcellent post Pin
Srivatsa Haridas9-Feb-11 23:39
professionalSrivatsa Haridas9-Feb-11 23:39 
GeneralExcellent control! Pin
Fritz4426-Jan-11 14:39
Fritz4426-Jan-11 14:39 
GeneralJust what i was looking for Pin
strogg9-Oct-09 9:13
strogg9-Oct-09 9:13 
GeneralWill not show/hide properly Pin
Member 326993925-Sep-09 5:37
Member 326993925-Sep-09 5:37 
GeneralThanks Pin
karenpayne9-Mar-09 9:49
karenpayne9-Mar-09 9:49 
GeneralAssembly generation failed -- Referenced assembly 'SpinningProgress' does not have a strong name Pin
blizznet26-Feb-09 8:37
blizznet26-Feb-09 8:37 
QuestionTransparent background ? Pin
yfrechette26-Nov-08 8:06
yfrechette26-Nov-08 8:06 
GeneralThis is Excellent Pin
Member 445279620-Oct-08 10:02
Member 445279620-Oct-08 10:02 
GeneralQuestion about threading. Pin
Rash101018-Aug-08 6:44
Rash101018-Aug-08 6:44 
GeneralRe: Question about threading. Pin
ateece19-Aug-08 2:51
ateece19-Aug-08 2:51 
GeneralCannot get this working using Multithreading Pin
SK2008VB25-Jun-08 5:12
SK2008VB25-Jun-08 5:12 
GeneralRe: Cannot get this working using Multithreading Pin
ateece26-Jun-08 23:46
ateece26-Jun-08 23:46 
GeneralExcellent Pin
gnixon29-May-08 6:52
gnixon29-May-08 6:52 
GeneralI got stuck on multithreading.............. Pin
AshStuff29-Apr-08 0:03
AshStuff29-Apr-08 0:03 
GeneralRe: I get stuck on multithreading.............. Pin
ateece29-Apr-08 0:09
ateece29-Apr-08 0:09 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.