Crystal Report hiding Main Report

Source: Internet
Author: User

The method is as follows:
Private void formatreportviewer ()
{

Crystaldecisions. Windows. Forms. pageview opageview = new crystaldecisions. Windows. Forms. pageview ();

System. Windows. Forms. tabcontrol ocontrol = new tabcontrol ();

Foreach (Object tab in crystalreportviewer1.controls)

{

String scontrol = tab. GetType (). Name. tostring ();

If (scontrol = "statusbar ")
{

Crystalreportviewer1.controls [4]. Visible = false;

}

If (scontrol = "pageview ")
{

Opageview =
(Crystaldecisions. Windows. Forms. pageview) (Tab );

Ocontrol = (tabcontrol) (opageview. controls [0]);

Ocontrol. itemsize = new size (0, 1 );

Ocontrol. sizemode = system. Windows. Forms. tabsizemode. fixed;

Ocontrol. Appearance = system. Windows. Forms. tabappearance. Buttons;

}
}
}

 

How to change the title on the mainreport tab is as follows:

Private void setreportname (crystalreportviewer crystalreportviewer1, string newname)

{

Foreach (Control in crystalreportviewer1.controls)

If (control is crystaldecisions. Windows. Forms. pageview)

Foreach (control controlinpage in control. Controls)

If (controlinpage is tabcontrol)

Foreach (tabpage in (controlinpage as tabcontrol). tabpages)

If (tabpage. Text = "mainreport ")

{

Tabpage. Text = newname;

Return;

}

}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.