I am developing a .Net application (C#) that views a report (.rdlc) and print it.
In case of successful printing I should update some status in the database.
But the problem I can't find a way to know that the printing is successful.
For reportviewer I have two events:
Print Event: It fires when user clicks on print button of reportViewer.
PrintingBegin Event:It fires when user clicks OK inside print dialogue - but in case of printer is offline or out of paper...etc, no indication is given and the application won't be able to know.
Is there a way to ensure that the printing process is successful?
Thanks