Friday 19 October 2012

ASP.NET Visual Studio 2012 - Crystal Reports - How to remove "Main Report" tab

Watch on youtube:



Replace the following
        <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
            AutoDataBind="true"  />
With
        <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
            AutoDataBind="true" HasDrilldownTabs="False" />

Basically, you have to set HasDrillDownTabs property to false

No comments:

Post a Comment