Change Crystal Report Zoom Level using percentages in Crystal Report Viewer (Dotnet)

  • Thread starter Thread starter Alex Stevens
  • Start date Start date
A

Alex Stevens

Hi All,

I have implemented my own toolbar on a form which houses the crystal reprot
viewer.
I would like to have a combobox to allow the user to change the zoom level
to say 25 / 50 / 75 / 100 / 200%

However the crystal report viewer only seems to allow two levels of zoom,
using the .Zoom method, 1 for actual size, and 2 for fit to screen.
Is there any way that I can manually set the zoom level to something else
i.e 50%?

Thanks

Alex
 
Hi,

Contrary to the documentation in dotnet, you can actually set the zoom level
percentage using the zoom method.
CrViewer.Zoom(25) sets it to 25% of original size.

Alex
 
Back
Top