Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
printing without prompting?
rbuser
February 2003
edited February 2003
in
General
Is it possible (RB 6.03) to just print the document without any preview?
Help!
TIA
Barry
Comments
rbuser
February 2003
edited February 2003
Hi Barry,
sure, set the device to printer and call 'Print'.
regards,
Chris Ueberall;
rbuser
February 2003
edited February 2003
THanks for prompt response.
However, can you go one step further and even stop the printer dialog from
appearing? I simply want to print automatically from within my software, as
the printer etc are already setup in software.
Thanks!
Barry
digitalmetaphors
February 2003
edited February 2003
Call
Report.ShowPrintDialog := False;
Report.Print;
or
Make a call to Report.PrintToDevices where you control the print process.
Cheers,
Jim Bennett
Digital Metaphors
Digital Metaphors Corporation
http://www.digital-metaphors.com
info@digital-metaphors.com
rbuser
February 2003
edited February 2003
THat's it! Many thanks.
B
This discussion has been closed.
Comments
sure, set the device to printer and call 'Print'.
regards,
Chris Ueberall;
However, can you go one step further and even stop the printer dialog from
appearing? I simply want to print automatically from within my software, as
the printer etc are already setup in software.
Thanks!
Barry
Report.ShowPrintDialog := False;
Report.Print;
or
Make a call to Report.PrintToDevices where you control the print process.
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com
B