How can I print my report ?
I created the report with FastReport
When I code my program such as
frxReport1.Print;
But nothing happen.
How can I print my report ?
What is the command or coding for printing ?
When I code my program such as
frxReport1.Print;
But nothing happen.
How can I print my report ?
What is the command or coding for printing ?
Comments
Terry
frxReport1.PrepareReport;
frxReport1.Print;
I can print it with that coding.