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 - Arin Alex

Pages: 1 ... 65 66 [67]
991
Discussion | Обсуждение / Re: Вопросы по 1.3.1
« on: January 20, 2016, 02:07:14 PM »
GraninDm, Пожелания приняли к сведению :) Элемент можно выделить и двигать стрелками: с Ctrl меняется положение, с Shift размер.

992
Discussion | Обсуждение / Re: Вопросы по 1.3.1
« on: January 19, 2016, 07:23:05 PM »
GraninDm,  Поправил найденые Вами баги. Добавил saveToString, loadFromString, saveToByteArray к LimeReport::ReportEngine. В скрипте функция now() теперь возвращает DateTime. А так же добавлены функции dateTimeFormat, timeFormat. Если все ок выложим на sourceforge.

[вложение удалено администратором]

993
Discussion | Обсуждение / Re: Вопросы по 1.3.1
« on: January 19, 2016, 04:36:15 PM »
GraninDm,
Quote
Хотелось бы загрузку и сохранение шаблонов  из/в строку.
Удобно если нужно загружать шаблоны из БД, например.

Есть функция   
Code: [Select]
bool    loadFromByteArray(QByteArray *data); для бд можно её использовать
Надо только saveToByteArray приделать :-D

994
Discussion | Обсуждение / Re: Вопросы по 1.3.1
« on: January 19, 2016, 04:22:53 PM »
Спасибо за информацию о выявленных багах, будем разбираться. Побольше бы таких замечаний, мало кто отписывается столь детально. Исправим в ближайшее время. Активным тестировщикам- в будущем преференции!:-)

995
Discussion | Обсуждение / Re: suggestions in the next release
« on: January 06, 2016, 01:24:21 AM »
Thank you for your suggestions, we will consider them when developing future releases.
Can I clarify what do you mean by conditional formatting? LimeReport can use script and html to format output field.

Example :
Code: [Select]
$S{
var selectedItemBegin = '<span style="background:black; color:red; font-weight:bold ">';
var selectedItemEnd = '</span>';
var customer = "";
if ($D{customers.CustomerID}=="ANTON"){
  customer = selectedItemBegin+$D{customers.CustomerID}+selectedItemEnd;
} else {
  customer = $D{customers.CustomerID};
}
'<span> Customer: </span>'+customer;
}

Also you can use "THIS" to change current item properties.

Example:
Code: [Select]
$S{
var color = new QColor('#DEB887');
var font = new QFont('Times New Roman',12,false,true);
if ( $D{customers.CustomerID}=="ANTON"){
  THIS.backgroundColor = color;
  THIS.font = font;
  THIS.fontColor = QColor('red');

$D{customers.CustomerID}
}

996
Discussion | Обсуждение / Re: LimeReport import XLS, DOC
« on: December 25, 2015, 05:12:42 PM »
Планируется :) 

997
New release 1.3.1 has been uploaded on sourceforge.net

998
Hi edutucci , thanks for your sample !  It was very useful. Thanks to it we have found an error! In the next release, which we are going to finish  this week, it will be fixed!
What about translation LimeReport doesn't have PT_BR translation yet  :(.

999
Hi edutucci !
What you write about the limereport's shortcomings  it's very important for us.
What do you mean to say that Limereport works in a empty window ?
Could you send us some samples where LimeReport has unexpected behavior.

1000
Discussion | Обсуждение / Re: The news page after a group
« on: December 02, 2015, 08:28:41 PM »
Hi Pierre udm !
This functionality is not implemented yet. Possible we will add some of this in next release.
What kind of diagrams are you interesting in?

1001
Hi edutucci!
Thanks for your message!
We will fix it as soon as possible.

1002
Discussion | Обсуждение / Re: LimeReport Pyton
« on: November 27, 2015, 02:13:30 AM »
LimeReport и python мы пока не скрещивали. 

1003
Discussion | Обсуждение / Re: How to use Variables?
« on: November 21, 2015, 03:21:24 AM »
http://sourceforge.net/projects/limereport/files/Updated_Demo.7z/download This  demo  show how to use variables. Put it to the "demo" subfolder in the limereport library root folder. Compile and run the "orders_by_date" demo report located in the "demo_reports" subfolder. Init report variable as is showed on the attached screenshot

[вложение удалено администратором]

1004
Discussion | Обсуждение / Re: loading limereport from Qtcretor
« on: November 20, 2015, 11:09:58 PM »
What do you mean "load from QtCreator" ? LimeReport it's only Qt library with embedded report designer. If you want run report designer you can write you own application to call report->designReport() there or use binary like LRDesigner.

Pages: 1 ... 65 66 [67]