hello, i have a winform application(visual basic 2010) which includes a webbrowser control. with this control i am browsing to a server and viewing a report. everything is fine but how can i print this report programmatically? after report fully loads.
i downloaded an .epf file from that server. how can i view this with crystalreportviewer control inside winform application ?
thanks for any help
Dim Report_Object As New R_Report_to_Print
R_Report_to_Print.Load()
CrystalReportViewer1.ReportSource = R_Report_to_Print
Report_Object.PrintToPrinter(1, True, 0, 0)
i am printing a loaded report object like this...but how can i use the controls of crystalreportviewer which is inside a webbrowser control? and its reportsource is an .epf file on a server..
Message was edited by: aydin ozdemir