Hi,
Is there any tutorial about LimeReport Script Language? I only found this video but not enaugh.
https://www.youtube.com/watch?v=9tVicuuTWFcI 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:)