Welcome, Guest. Please login or register.
Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Messages - omaro

Pages: [1]
1
Discussion | Обсуждение / Re: Open And modify a pdf file
« on: November 22, 2020, 10:46:19 AM »
Thank you for your reply Subst, I know the aim of LR, but I was wondering if we could treat the pdf as an image, we could put it in the background and play on it.

 

2
Discussion | Обсуждение / Open And modify a pdf file
« on: November 21, 2020, 02:02:10 PM »
Hi,

Guys is there a way that I can open and modify an existing pdf file with limereport,

Thank you for your helps

3
Thank you Alex,
createPreviewWidget is working :), now I will adjust the preview in a QWidget

4
Hi guys, I'm using LimeReport in a QML application, I can run my report easily from C++ but when I run previewReport my main app (gui) freeze I can only use the windows of the previewReport, if I want also to minimize the previewReport all the app is minimized.
Thanks for your help

this my c++ function that I'm using to run the report, I'm executing this function from QML:
Code: [Select]
bool ser_to_qml::printReport_request(QString request)
{
    m_report.dataManager()->setReportVariable("requestnumber", request);
    bool res = m_report.loadFromFile(":/report/RequestDemand.lrxml");
    m_report.setResultEditable(false);
    m_report.previewReport();
    return res;
}

Pages: [1]