cezaryece

Results 8 comments of cezaryece
trafficstars

Depending on OS you are working on you must call system process for print action for created xlsx file.

Seems I have same issue. I would like to set column width if after autosizeColumnWidth it is less than my minWidth. ``` if (!doc.autosizeColumnWidth(1, maxColumn)) return; for (auto i=1; i...

Its only sets predefined value of column width. My goal is to 1. optimize column width (doc.autosizeColumnWidth) 2. set column width to some minimum value if column width is smaller...

As workaround I get QXlsx code to my app and refactor doc.autosizeColumnWidth to achieving my goals.

Even more - for me will be better if this plugin could work with all IDEs can build Android APK. As CLion has Qt framework support it can build Android...

As workaoround use code like this: `auto bruttoCell = QXlsx::CellReference(row, col); const auto &formcCosts = QString("=%1/2 ").arg(bruttoCell.toString()); c++; doc.write(row, col, formcCosts);`

In fact maybe it is problem of knowledge of how Cutelyst works. In standard web services each request open connection which is closed after sending response. In mobile environment when...

Any thoughts or suggestions?