Dear Sir,
I'm Trying to know event from on the print button Microsoft Report Viewer/ Rdlc using VB.NET.
So I want every time I click on the event from the Print button from the Report Viewer then the event can be used to update the number of prints with SQL to the database.
Is there a solution?
Please Guide me
Link image button print report viewer
Thanks
Hi kana250688,
Use the ReportViewer Print event handler.
Code
Private Sub ReportViewer1_Print(sender As Object, e As ReportPrintEventArgs) Handles ReportViewer1.Print ' Your update code for number of prints. End Sub
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.