Hi,
I need to know if the report is printed, I used the follwing command
frm.stiReport1.Printed += new EventHandler(stiReport1_Printed);
frm.stiReport1.Show();
void stiReport1_Printed(object sender, EventArgs e)
{
MessageBox.Show("Printed");
}
but why it's not TRIGERED when the report is printed ?
please tell me how it is used
Thanks
Printed Event
Printed Event
Hello,
Try to use following code:
Thank you.
Try to use following code:
Code: Select all
frm.stiReport1.Compile();
frm.stiReport1.CompiledReport.Printed += new EventHandler(stiReport1_Printed);
frm.stiReport1.Show();
void stiReport1_Printed(object sender, EventArgs e)
{
MessageBox.Show("Printed");
}
Printed Event
Thanks it worked perfectly
Printed Event
We are glad to help you. :biggrin: