I am Using Delphi VCL and the problem is that I am creating labels and printing them, the user selects how many to print and I need to add a progress bar to the printing process so that it says something like: printing 3 of 7 or similar, but I don't know how to.
any ideas how to get this done?
EDIT:
I am using FastReports for printing the label and I basically set:
report.PrintOptions.Copies:= x;
report.Print;
the report's printer is set to the same printer that Tprinter is set, I set them with Printer.PrinterIndex:= Printer.Printers.IndexOf('My Printer');