ActiveReports 6 Online Help
PrintProgress Event (ActiveReport)
Example 

Raised for each page while printing the report document.
Syntax
'Declaration
 
Public Event PrintProgress As EventHandler
public event EventHandler PrintProgress
Example
This sample assumes that you have created a public property in the report and passed in a reference to the calling form. You can also use this technique to set the title bar text on the form window.
private int x = 0;
private void testLA_PrintProgress(object sender, System.EventArgs eArgs)
{
    //Print Progress is triggered once per page printed. 
    myWinForm.Label1.Text = "Now Printing Page " + x;
    x++;
}
Private x As Integer = 0
Private Sub rptDD_PrintProgress(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.PrintProgress
    myWinForm.Label1.Text = "Now Printing Page " + x
    x = x + 1
End Sub
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ActiveReport Class
ActiveReport Members
PrintAborted Event

Send Feedback