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 ?

Comments

  • edited 11:02AM
    If you take the time to read the documentation you will find the code to print a report.

    Terry
  • edited 11:02AM
    frxReport1.LoadFromFile(...)
    frxReport1.PrepareReport;
    frxReport1.Print;
  • edited 11:02AM
    Thank you

    I can print it with that coding.

Leave a Comment