CrystalReportViewer
I have a CrystalreportViewer inside my form - and I am trying to extract data in that viewer - howevre I am not able to zoom it so thatall the data fits into the whole page - I dont want to see the scroll bar and I want the data to be centered. So, My code looks like this -
Dim x As New OMSPositionReport()
Dim frm As New DefaultReportForm
x.SetDataSource(CType(positionTradeTable, DataTable))
frm.CrystalReportViewer1.ReportSource = x
frm.CrystalReportViewer1.Zoom(2)
frm.Show()