1
Discussion | Обсуждение / Re: Загрузка отчета из ресурсов приложения
« on: April 28, 2018, 09:24:19 am »
Получилось.
Вот так:
QFile RepFile(":/report/testreport.lrxml");
if (!RepFile.open(QIODevice::ReadOnly)) return;
QByteArray Content = RepFile.readAll();
Report->loadFromByteArray(& Content);
Вот так:
QFile RepFile(":/report/testreport.lrxml");
if (!RepFile.open(QIODevice::ReadOnly)) return;
QByteArray Content = RepFile.readAll();
Report->loadFromByteArray(& Content);