Click here to Skip to main content
15,888,803 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
SAP Crystal Report VS 2010 - Zoom settings are not consistent when DrillDown

I tried to set Zoom% for the Report using Zoom(Int32 ZoomLevel) API,

Example:
crystalReportViewer.Zoom(1); //Sets to Page Width

The above works fine. But, While Drill down the Report, ((i.e) Double Clicking on the DrillDownable Section), the Zoom changed to 100%.

How can I keep the same Zoom settings for across all Drill Down pages?
Posted

1 solution

is this perhaps ;-)

private void crystalReportViewerEmp_Paint(object sender, PaintEventArgs e)
{
crystalReportViewerEmp.Zoom(1);
}
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900