Export to JPG - how to set options
I want to automatically create a JPG from a report with no interaction from the user.
JPEGExport->FileName = FileName;
JPEGExport->DefaultPath = FilePathWithTrailingSlash;
JPEGExport->ShowDialog = false;
ReportPrintResults->Export(JPEGExport);
OK, this works. But I want to be able to check/uncheck the "Separate pages" checkbox without displaying the export options. How do I do that?
thanks!
JPEGExport->FileName = FileName;
JPEGExport->DefaultPath = FilePathWithTrailingSlash;
JPEGExport->ShowDialog = false;
ReportPrintResults->Export(JPEGExport);
OK, this works. But I want to be able to check/uncheck the "Separate pages" checkbox without displaying the export options. How do I do that?
thanks!
Comments