So i have another problem with ActiveQt and Excel =)
Does anybody know how to set Excel' cell values by array of data?
I mean not to call setValue on each cell, but set values of whole Range with only one call.
It will rapidly speed working with Excel data.
Well, here are my examples of code, which are unfortunately doesn't work
Example1, does nothing at all
QList<QVariant> lst;
for (int i=1; i<6; i++)
lst.append(i);
range = sheet->querySubObject( "Range(QString, QString)", "V1", "V5" );
range->dynamicCall("SetValue(QList<QVariant>)", lst);
QList<QVariant> lst;
for (int i=1; i<6; i++)
lst.append(i);
range = sheet->querySubObject( "Range(QString, QString)", "V1", "V5" );
QVariant v(lst);
range->dynamicCall("SetValue(QList<QVariant>)", lst);
To copy to clipboard, switch view to plain text mode
Example 2, sets all values only to first value of list 
range->dynamicCall("SetValue(QVariant)", v);
QVariant v(lst);
range->dynamicCall("SetValue(QVariant)", v);
To copy to clipboard, switch view to plain text mode
Thanks.
Bookmarks