Vertical Scroll Bar not Scrolling whole page

Stimulsoft Reports.NET discussion
Ink
Posts: 50
Joined: Sat Jul 02, 2011 2:26 am
Location: UK

Vertical Scroll Bar not Scrolling whole page

Post by Ink »

Hi,

I have a reportviewer control in my vb.net winforms app. I have hidden the stimlsoft toolbar & placed my on on the form hosting the viewer.
When the user click my toolbar I call the appropriate 'Invoke' method of the stimulsoft toolbar.

My problem is is the report is in whole page view and the user clicks my page Width tool bar button (I call ZoomPageWidth) the page zooms to Page Width correctly, but the vertical scroll bar only scrolls the user part way down the page and you cannot see the lower part of the report.

Am i using the wrong invoke method?

Jon.
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

Vertical Scroll Bar not Scrolling whole page

Post by Jan »

Hello Jon,

Can you provide any sample project?

Thank you.
Ink
Posts: 50
Joined: Sat Jul 02, 2011 2:26 am
Location: UK

Vertical Scroll Bar not Scrolling whole page

Post by Ink »

Jan,

I have mailed a project to support

Jon.
Andrew
Posts: 4109
Joined: Fri Jun 09, 2006 3:58 am

Vertical Scroll Bar not Scrolling whole page

Post by Andrew »

Hello,

We will review it shortly.

Thank you.
BIG
Posts: 1
Joined: Thu Sep 08, 2011 7:52 am
Location: Belgium

Vertical Scroll Bar not Scrolling whole page

Post by BIG »

Hi,

We also experience this problem. When we zoom in to view the page in a readible size, we cannot scroll to the bottom of the page.

Is there any solution to this?

The report is shown in a windows form using the code below, with a reference to 2011.1.1000.0 Stimulsoft dll's:
private void ShowReportPreview(StiReport report)
{
PreviewForm = new Form();
PreviewForm.MdiParent = m_CallerForm;

// Add preview control
StiViewerControl ViewerControl = new StiViewerControl(report);
PreviewForm.Controls.Add(ViewerControl);

Stimulsoft.Report.Win.StiGuiHelper.ApplyStyle(ViewerControl, StiGlobalGuiStyle.Office2007Silver);
ViewerControl.Dock = DockStyle.Fill;

ViewerControl.Close += new EventHandler(PreviewControl_Close);

report.Render();

// Hide bookmarks and thumbnails by default
ViewerControl.PageViewMode = StiPageViewMode.SinglePage;
ViewerControl.ThumbsPanelEnabled = false;
ViewerControl.BookmarksTreeView.Visible = false;
ViewerControl.BookmarksTreeView.Enabled = false;

var ToolList = ViewerControl.ToolBar.GetItems("tbBookmarks");
if (ToolList.Count > 0)
{
((ButtonItem)ToolList[0]).Visible = false;
((ButtonItem)ToolList[0]).Enabled = false;
}

PreviewForm.Show();
ViewerControl.SetZoomPageWidth();
}
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Vertical Scroll Bar not Scrolling whole page

Post by Alex K. »

Hello,

Please check the last prerelease build and let us know about the result.

Thank you.
thiru
Posts: 3
Joined: Sat Jul 04, 2020 1:52 am

Re: Vertical Scroll Bar not Scrolling whole page

Post by thiru »

i faced this same problem ,please help me
Lech Kulikowski
Posts: 7341
Joined: Tue Mar 20, 2018 5:34 am

Re: Vertical Scroll Bar not Scrolling whole page

Post by Lech Kulikowski »

Hello,

Which product and version are you use?

Thank you.
MiXaiL
Posts: 1
Joined: Thu Aug 13, 2020 1:07 pm

Re: Vertical Scroll Bar not Scrolling whole page

Post by MiXaiL »

I have the same problem. I use diagrams. Set the auto range value to "False", set the minimum and maximum values. Set to display vertical scrolling. Vertical scrolling is displayed but cannot be moved. Used version 2019.4.1 and latest 2020.3.2.
Lech Kulikowski
Posts: 7341
Joined: Tue Mar 20, 2018 5:34 am

Re: Vertical Scroll Bar not Scrolling whole page

Post by Lech Kulikowski »

Hello,

Unfortunately, scrolling is not supported for Range limits.

Thank you.
Post Reply