News: LimeReport new version 1.5 has been released
Вышла новая версия LimeReport 1.5

Recent Posts

Pages: 1 ... 8 9 [10]
91
Discussion | Обсуждение / Re: Build error v 1.5
« Last post by Subst on March 01, 2025, 09:32:11 am »
Hi!

Quote
Aggregate 'Qpainterpath ' has incomplete type and cnnot be defined'

in which file message appears?

Quote
Can I add support for mysql to Lime Report? Now I have to convert Access dtabase to mysql and the to sqlite. All responses are appreciated

LR is able to work with any database. Your application must work with database, LR can operated with models, transferred from main application code.
92
Discussion | Обсуждение / Build error v 1.5
« Last post by n3mow on February 28, 2025, 10:55:06 pm »
Tried to build Lime Report V 1.5 with QT Creator - Error "Aggregate 'Qpainterpath ' has incomplete type and cnnot be defined'". What can I do to fix this? Used the limereport.pro file in the packedge. I am new to building qt projects so I need a basic explanation of how to fix this error. Can I add support for mysql to Lime Report? Now I have to convert Access dtabase to mysql and the to sqlite. All responses are appreciated.

Thanks,
Marty
93
Discussion | Обсуждение / Re: how setting of boarder line dynamically
« Last post by Subst on December 05, 2024, 11:34:45 am »
Hi!
By using the script as the content of TextItem for example
Like this

Code: [Select]
$S{
  if (your_condition)
    THIS.borders=15;
  "simple_text";
  }

the Enum of borders is

Code: [Select]
enum BorderSide {
  NoLine = 0,
  TopLine = 1,
  BottomLine = 2,
  LeftLine = 4,
  RightLine = 8,
  AllLines = 15
  };
94
Discussion | Обсуждение / how setting of boarder line dynamically
« Last post by solomon78 on December 03, 2024, 01:47:01 am »
How to disable or enable boarder line of of Text_Item dynamically base on certainin conditions, if retrieve data of Text_Item is null boarder line should not appear but if not null boarder should show. thank
95
Discussion | Обсуждение / Re: Lime Report line numbering
« Last post by solomon78 on November 26, 2024, 10:13:45 pm »
 using PARTITION BY and ROW_NUMBER() hard coding will help on line number
96
Discussion | Обсуждение / Re: How to limit number of rows
« Last post by solomon78 on November 26, 2024, 10:08:20 pm »
you need to select *from TableA where ${TableB.id} = TableA.id and ${TableB.mClass} = TableA.KClass; such condition will help you to filter and meet you desire
97
Discussion | Обсуждение / How to limit number of rows
« Last post by Mohammad on October 21, 2024, 08:58:08 pm »
Hi everyone
I want to limit number of rows in each page
actually, I have a DataBand and I added a datasource with 50 rows to it.
How can I change setting to show only 5 rows in each page from my datasource?
98
Discussion | Обсуждение / Re: Вопросы новичка
« Last post by Paul on September 08, 2024, 12:09:48 pm »
How to split data into columns vertically?
Have datasource with 5-10 items and want to split it to 2 columns verticaly:
1 4
2 5
3 6

But receive
1
2
3
4
5
6

columnFillDirection = Vertical

If I select VerticalUniform that recieve just:
4
5
6


99
Hi!
Can I see your LR report file (.lrxml) ?
100
Hi All ,
I Have A problem With LimeReport Cannot Read Cell Widgets data inside QTableWidget Model
is There Any way Casting this data , so Limereport can read it ?
i mean some Columns Are Spinbox , And QTextEdit ~~^^

Code: [Select]
QDoubleSpinBox *spinbox=new QDoubleSpinBox(ui->tableWidget);
        ui->tableWidget->setCellWidget( ui->tableWidget->rowCount() - 1, 2, spinbox );

LimeReport::ReportEngine *report=new LimeReport::ReportEngine(this);
auto model=ui->tableWidget->model();
report->dataManager()->addModel("tablemodel",model,false);
it shows cell widget columns empty ...
Pages: 1 ... 8 9 [10]