Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am using the following code to send my SSRS report printer but it does not print directly but it shows the print dialogue. User has to click print button. Please advise how to avoid showing print dialogue box. My code is:
C#
Private Sub ReportViewer1_RenderingComplete(ByVal sender As Object, ByVal e As Microsoft.Reporting.WinForms.RenderingCompleteEventArgs) Handles ReportViewer1.RenderingComplete
    If vrDirectPrint = "True" Then
        Me.Hide()
        ReportViewer1.PrintDialog()
        Me.Dispose()
    End If
End Sub
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900