Nick,

Firstly, thank you. I love your control and its adding so much to the look and feel of my apps UI, however I have a question if I may.

To reduce the size of my UI, I've setup some code which forces all of the other groups to collapse upon expanding one of them. Example below:

Code:
Private Sub grpREcommendations_Expand(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles grpRecommendations.Expand
        grpGeneralSettings.Expanded = False
        grpSiteInformation.Expanded = False
        grpDatabaseInfo.Expanded = False
        grpUsageSummary.Expanded = False
        grpSpeechRecognition.Expanded = False
        grpServerHealth.Expanded = False
        grpBadgeHealth.Expanded = False
    End Sub
This works great and collapses all of the other compartments when one is expanded, however I've noticed that the expand button remains in it's Minus or expanded state until I mouse-over the button at which point it redraws and becomes the correct Plus image.

Is there a way to force the group to redraw when I am collapsing it so that the button updates?

Thanks
Richard