Click here to Skip to main content
6,595,444 members and growing! (21,821 online)
Email Password   helpLost your password?
Languages » VB.NET » General     Intermediate

Hiding the Crystal Report Viewer's Statusbar

By Andrew Fleming

Code to hide the Crystal Report Viewer's statusbar.
VB.NET 1.0, .NET 1.1, Win2K, WinXP, Win2003, Dev
Posted:27 Apr 2003
Views:109,694
Bookmarked:31 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
13 votes for this article.
Popularity: 3.66 Rating: 3.29 out of 5
3 votes, 23.1%
1

2
1 vote, 7.7%
3
6 votes, 46.2%
4
3 votes, 23.1%
5

Screenshot

Introduction

In .NET, the CyrstalReportViewer control is a very powerful tool. It�s supplied with most of the basics that people would require from it, except for one, straight off the bat. How do I hide the StatusBar? What makes it even more baffling is that you can hide both the group tree and the toolbar using the DisplayGroupTree and DisplayToolbar properties respectively. However, a DisplayStatusbar property is nowhere to be seen.

Dead ends

Under help for the CrystalReportViewer, there is supposed to be ViewerStatusBar property, which gets the StatusBar object. But this doesn't appear to be exposed in either VB.NET or C#. However, if you could get a hold of the StatusBar object, then you could set the StatusBar�s Visible property to False, causing it to be hidden.

So, how do I get hold of the StatusBar then?

More Background

In a nutshell, the CrystalReportViewer control is actually five controls combined. Namely:

  1. CrystalDecisions.Windows.Forms.PageView. The main window.
  2. System.Windows.Forms.Splitter. A splitter between the main window and the Group Tree.
  3. CrystalDecisions.Windows.Forms.ReportGroupTree. A tree view to allow you to drill down on the side of the report.
  4. System.Windows.Forms.ToolBar. The tool bar at the top that allows you to do things like export the report, print, etc.
  5. System.Windows.Forms.StatusBar. And our status bar that we would like to hide.

The Answer

So knowing that there are actually five controls within the CrystalReportViewer, all we need to do is search through all these controls. Find the StatusBar, and then set its Visible property to False. It�s that simple!

The Code

To set it up as a property for a UserControl (see the source project above), the code would look like this:

Public Property DisplayStatusBar() As Boolean
        Get
            Dim obj As Object
            Dim tempStatusbar As New StatusBar()

            For Each obj In Me.CrystalReportViewer1.Controls
                If obj.GetType Is tempStatusbar.GetType Then
                    Return CType(obj, StatusBar).Visible
                    Exit For
                End If
            Next

            tempStatusbar.Dispose()
            tempStatusbar = Nothing
        End Get
        Set(ByVal Value As Boolean)
            Dim obj As Object
            Dim tempStatusbar As New StatusBar()

            For Each obj In Me.CrystalReportViewer1.Controls
                If obj.GetType Is tempStatusbar.GetType Then
                    CType(obj, StatusBar).Visible = Value
                    Exit For
                End If
            Next

            tempStatusbar.Dispose()
            tempStatusbar = Nothing
        End Set
    End Property

The above code is less than ideal because the only way I could check the type of the control is to create an instance of the StatusBar, and then compare it with what the GetType method returns. Ideally, the code should look something like this:

     Set(ByVal Value As Boolean)
         Dim obj As Object
         For Each obj In Me.CrystalReportViewer1.Controls
             If obj.GetType Is System.Windows.Forms.StatusBar Then
                 CType(obj, StatusBar).Visible = Value
                 Exit For
             End If
         Next
     End Set

The reason why I couldn�t do it this way is that the obj.GetType Is System.Windows.Forms.StatusBar seems to be incompatible (System.Type vs. System.Windows.Forms.Type).

Anyway, if someone can get it to work without creating an extra instance of StatusBar, I�d love to hear from them.

Summary

I would like to repeat that this implementation is less than ideal. Then again, it�s less than ideal that we have to do this in the first place. Hopefully, this article obsoletes by the next version of .NET or even Crystal 9, where they may give you the property by default (here�s hoping). But to put all that aside for a moment, it�s a good workaround for hiding the StatusBar when displaying crystal reports in .NET!

I hope this helps someone out there!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Andrew Fleming


Member
Who cares what my history is! I’m not sitting a job interview. I’m here trying to help like minded programmer, therefore if my code doesn’t stand up, then my history isn’t worth jack.
Occupation: Web Developer
Location: Australia Australia

Other popular VB.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 20 of 20 (Total in Forum: 20) (Refresh)FirstPrevNext
GeneralProblem with CrystallReport And SQL PinmemberBlueHeaven21:55 11 Apr '05  
GeneralCESAR Pinmembercecosr14:11 3 Feb '05  
GeneralYou can also hide the mainreport tab and change color PinsussAnonymous4:56 17 Nov '04  
Answerhide the mainreport tab__C# version Pinmemberzhujj10:40 3 Aug '06  
GeneralAnd a VB version PinmemberMartin Koster6:35 27 Mar '09  
GeneralCrystal Report Viewer's Search Text Form PinsussAnonymous12:20 30 Aug '04  
GeneralHiding statusbar without creating tempStatus bar Pinmemberkrsmurali7:14 13 Feb '04  
GeneralRe: Hiding statusbar without creating tempStatus bar PinmemberJoop,Muis0:11 24 May '05  
GeneralYour TODO item solved here! PinmemberDries_Neyrinck12:39 12 Nov '03  
GeneralRe: Your TODO item solved here! PinsussAnonymous13:41 12 Nov '03  
Generalselection formula in crystal report viewer Pinmembervickorpio19:43 16 Oct '03  
GeneralRe: selection formula in crystal report viewer PinsussAnonymous3:46 24 Feb '04  
GeneralHelp!!!!! Pinmemberwabi22:29 10 Aug '03  
GeneralStatusBar Hide Pinmemberwabi0:15 29 Jul '03  
GeneralRe: StatusBar Hide Pinmemberkukkken0:56 1 Apr '05  
GeneralRe: StatusBar Hide Pinmembermiklovan19:21 18 May '05  
GeneralYou can rename that MainReport tab too PinmemberTrevor Kennedy14:12 12 Jul '03  
GeneralRe: You can rename that MainReport tab too PinmemberJOHNET13:05 2 Nov '03  
GeneralRe: You can rename that MainReport tab too PinsussAnonymous10:23 19 Jan '04  
GeneralRe: You can rename that MainReport tab too PinmemberRubens A. Lucca5:37 29 Apr '04  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 27 Apr 2003
Editor: Smitha Vijayan
Copyright 2003 by Andrew Fleming
Everything else Copyright © CodeProject, 1999-2009
Web12 | Advertise on the Code Project