Create PDF of a classic report (without RDLC) from RTC

1. Make Bullzip PDF Printer the default printer for the Classic report (in this example 50080) without RDLC (printer selections) 2. Add this code in Report - OnInitReport() BullZipPDF.Init; BullZipPDF.LoadSettings; BullZipPDF.SetValue('Output','c:\temp\temp.pdf'); //only example, better to use timestamp BullZipPDF.SetValue('Showsettings', 'never'); BullZipPDF.SetValue('ShowPDF', 'no'); BullZipPDF.SetValue('ShowProgress', 'no'); BullZipPDF.SetValue('ShowProgressFinished', 'no'); BullZipPDF.SetValue('SuppressErrors',…