Hi!
Can someone help me please?
Im using ASP.NET and
VB.NET and i try to print a crystal report using the crystal report viewer.
Here is my code :
-------------------------------------------------------------------
Dim custReport As New comparatifhoursrep
If Not (IsPostBack) Then
custReport.SetParameterValue("CustomerName", "A Lacroix")
custReport.SetParameterValue("ProjectName", "projet2")
End If
CrystalReportViewer1.ReportSource = custReport
-----------------------------------------------------------------
In the web page i display the toolbar but when i click on the print button, the page refreshes itself, so my report becomes blank. I can print it but its a blank report.
I tried to send the parameter again but i got and error or printing and i cant print my report.
Please help me!!!