LimeReport Forum
General Category | Основное => Discussion | Обсуждение => Topic started by: davidovv on March 07, 2017, 03:43:37 pm
-
When executing ReportEngine::printReport() the dialog shows for selection of the printer and additional print button click
How can I skip his dialog and print directly to default printer?
-
You can pass the printer as an argument to the function ReportEngine::printReport(QPrinter * printer = 0)
-
Не бейте ногами, но я больше на питоне пишу. Как послать аргумент в эту функцию?
-
Послать аргумент куда? Не вполне понятен вопрос..
сюда?
ReportEngine::printReport(QPrinter * printer = 0)
как-то так, наверное
LimeReport::ReportEngine *m_report=new LimeReport::ReportEngine(this);
m_report->loadFromFile(path_to_template);
m_report->printReport(new QPrinter(QPrinterInfo::defaultPrinter());
-
Спасибо, я решил несколько иначе, я передаю имя принтера, что позволяет печатать разные отчеты на разные принтеры используя conf файл
QPrinter printerLS;
printerLS.setPrinterName(printerLS.printerName());
LimeReport::ReportEngine reportLS;
if (varItem.at(0) == "printerLS"){printerLS.setPrinterName(varItem.at(1));}
reportLS.printReport(&printerLS);