whytheq
whytheq

Reputation: 35605

Hiding the page scroll control in a Reporting Services report

If I force a report onto one page is it also possible to hide the following control?

enter image description here

Upvotes: 2

Views: 1445

Answers (1)

Silagy
Silagy

Reputation: 3083

First Look at this article

You can hide the toolbar like this:

http://<Server Name>/reportserver?/Sales/YearlySalesSummary
&rs:Command=Render&rs:Format=HTML4.0&rc:Toolbar=false

The parameter you are looking for is that:

&rc:Toolbar=false

Edit - Hide only the Page navigation using report viewer control (Win Forms)

First download the report viewer control

Then follow these steps:

  • Add the report viewer control to the form
  • Set the report server and report path URLs

Next customize the report properties in the Form1_Load method

private void Form1_Load(object sender, EventArgs e)
        {
            rpViewer.ShowPageNavigationControls = false;
            this.rpViewer.RefreshReport();
        }

The results should look like that: enter image description here

Upvotes: 2

Related Questions