On some machines (not all) when a user views an archive file then clicks on the printer icon, the archive reader generates a "Screen Printer does not support printing". Any help would be appreciated.
You are seeing this message because the archives were created with the Report.PrinterSetup.PrinterName := 'Screen'. ReportBuilder is letting you know that when printing to screen, you will not be able to print to the printer. You can change this setting in the ArchiveReader.OnInitializePrinterSetup event by adding the following code...
ArchiveReader.PrinterSetup.PrinterName := 'Default'; {Or the name of the printer you want to use}
Comments
You are seeing this message because the archives were created with the
Report.PrinterSetup.PrinterName := 'Screen'. ReportBuilder is letting you
know that when printing to screen, you will not be able to print to the
printer. You can change this setting in the
ArchiveReader.OnInitializePrinterSetup event by adding the following code...
ArchiveReader.PrinterSetup.PrinterName := 'Default'; {Or the name of the
printer you want to use}
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com