Hello, I’m having trouble to export numbers to libreoffice via uno api.
When a build in delphi an application 32 bits its works fine, but 64 bits the numbers turns all to 0 in libreoffice.
The code:
list:= s1.getCellRangeByPosition(x,y,z,w);
list.NumberFormat:= 4;
Ex: 32bits = 3.456 / 64bits = 0
Does anything change in the API between 32 and 64 bits?
thanks in advance