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.

Topics - Mucip

Pages: [1]
1
Hi,
I want to create LimeReport form on GUI. But I need to send this form directly to printer (no need to show or design!) in console application.
Is this possible? I did not test now but I guess It must be possible?

Regards,
Mucip:)

2
Hi,
I want to use LimeReport in RaspberryPi 4 x64. When I compile below errors and warning appear:

:-1: warning: Project WARNING: CONFIG+=uitools is deprecated. Use QT+=uitools instead.
:-1: error: Project ERROR: Unknown module(s) in QT: designercomponents-private

How can I compile and use LimeReport with my programs on RaspberryPi 4 x64?



Regards,
Mucip:)

3
Discussion | Обсуждение / Limereport with Godex Barcode printer?
« on: September 02, 2022, 10:30:09 AM »
Hi,
I want to use LimeReport on Qt5.14, Debian 11 with Godex barcode printer. I installed Limereport and run designer without any problem.

I design barcode on 100mmx100mm page (because barcode printer label size is 100x100).
If I make pdf file from this report and send it to Godex Printer than it looks good.
But when I want to print directly from designer than barcode printer gives 5 empty label without anything on it?!

Any suggestion?

P.S. : I use LimeReport 1.5.1

Regards,
Mucip:)

 

4
Discussion | Обсуждение / Using LimeReport 1.5.87 on Debian 11
« on: August 30, 2022, 03:45:36 PM »
Hi,
I planned to use LimeRport on Debian 11 xfce desktop.
I downloaded 1.5.87 from github and try to compile in Qt 6.3 but I get some errors like "Con not find -IGL" and libQtZint.

I use with great success in Win platforms and want to use in Debian Linux too.

Regards,
Mucip:)

5
Discussion | Обсуждение / Slow startup time!
« on: March 08, 2020, 02:35:39 PM »
Hi,
Everything perfect with LimeTeport except speed! :(

When I add #include<LimeReport> in the header of the form, it's dramaticly make slow the loading time. I'm waiting while formX.show()

Any advice  please?

Regards,
Mucip:)

6
Discussion | Обсуждение / Dialog and Function browser?
« on: March 03, 2020, 10:24:03 AM »
Hi,
There is Script Browser pane on the left side. But nothing happens when I press the buttons.
Is there any tutorial about how to add/edit/delete Functions and Dialogs?

Regards,
Mucip:)

7
Hi,
In github, version 1.5.35 readme file says;

#include "lrreportengine.h" to add report engine

But it was before;

#include <LimeReport>

What is the differenece and which is the better?

Regards,
Mucip:)





8
Discussion | Обсуждение / Sript language tutorial?
« on: February 29, 2020, 03:27:56 PM »
Hi,
Is there any tutorial about LimeReport Script Language? I only found this video but not enaugh.

https://www.youtube.com/watch?v=9tVicuuTWFc

I need the function of selecting bigger or smaller value of to int value like below?


int MainWindow::biggerValue(int gelen1, int gelen2)
{
    if(gelen1 == gelen2) return gelen1;

    if(gelen1 < gelen2) return gelen2;else return gelen1;

}

int MainWindow::smallerValue(int gelen1, int gelen2)
{
    if(gelen1 == gelen2) return gelen1;
    if(gelen1 > gelen2) return gelen2;else return gelen1;

}



Can I use same functions in LimeReport Script ,n case of determine bigger or smaller value of two database value?

Ofcourse I can send it with SQL too but I want to diving deep in LimeReport.  ;)


Regards,
Mucip:)

9
Hi,
There is "Edit Mode" button on the Report Preview window.
I want to disable it because user should not edit the report.

I need to prevent user ability to edit report.

Regards,
Mucip:)

10
Hi,
I can not drag and drop from data browser on the report page.

I use QSqlQueryModel as a model pass to the data manager.

Regards,
Mucip:)

11
Hi,
I have definitons in header file like below;

QSqlQueryModel *raporModel;
LimeReport::ReportEngine *mRapor;


And in mainwindow.cpp

mRapor = new LimeReport::ReportEngine(this);
raporModel = new QSqlQueryModel(this);


And when I press the showReport button;

raporModel->setQuery("SELECT * FROM tartim WHERE belge_no = '" + belge_no + "' ;");

mRapor->dataManager()->addModel("Tartim", raporModel, true);
mRapor->designReport();


Well, the problem is when I push the showReport button second time it raise error because I wanted to load same model second time. :(

How can I check if the same model name loaded before? Or can I clean the model from dataManeger when I close preview or print the report? Maybe this is better for memoryleak?

P.S: I can not drag the model fields on the report page with mouse! Is it because of the readonly Model?...

Regards,
Mucip:)




12
Discussion | Обсуждение / Compile error in 1.5.35
« on: February 26, 2020, 07:03:17 PM »
Hi,
I have been downloaded and compiled version 1.5.0 which is downloaded from sorceforge. It was OK.

But I realised from this forum there is newer version in gitHub and trying to compile 1.5.35

I use Qt 5.13.2 on Win10 MSVC2017 32 bit and MSVC2017 64 bit. In thşs case I could not build unfortunatelly. My guide is: https://www.youtube.com/watch?v=Z7JOOQ187XE and I use -j10 parameter also.


What is the build parameter difference between 1.5.0 and 1.5.35?

The error output is:




Regards,
Mucip:)

13
Discussion | Обсуждение / Multi detailed band available?
« on: February 26, 2020, 05:52:28 PM »
Hi,
Let's say we have invoice. One master (customer and address etc.) and one detail (spare parts and price in the invoice) table should be in the invoice page. Can we put one detail grids in the same page? For example work details more than one rows in the same page.

I mean one master record tabele and more than two detail tables record in the same page?

Is this possible?

Regards,
Mukcip:)

14
Hi,
First of all congrulations for this project. Good job.  ;)

As I see on the tutorial videos you may define database and table and the columns. But I want to designe report in the begining and send the data to the report on runtime. I want to define SQL staement on runtime.

I'm sure it should be possible and I couldn't find any tutorial about this. I am using QtRPT now and want to try your project too.

Regards,
Mucip:)

Pages: [1]