Hi everyone, I'm using Crystal Reports 9 with
VB.NET to prepare reports for printing. My problem is that I cannot set the zoom level of the report. It just doesn't work ! I would like my page zoommed to about 75 %, but it remains to 100% whatever zoom level I set. Here is the code (CRV is an instance of the CrystalReportViewer)
Dim Rpt As New CRVRep
Rpt.SetDataSource(oDsStampaQuadroCli)
CRV.Zoom(75)
CRV.ReportSource = Rpt
If i change the zoom level from the zoom button it works. What's wrong ?