When trying to save an .xls file I'm having the following error:
'15 .0 'is not a valid floating point value
I'm trying to save it like this:
var
HCalc : THojaCalc;
vArquivo : String;
vArquivo := 'C:/MinhaPasta/Arquivo.xls'; //dentro do arquivo.xls não tem nenhum valor
HCalc := THojaCalc.create(vArquivo, False);
HCalc.ActivateSheetByIndex(1);
HCalc.CellText[3,2] := 'teste';
HCalc.SaveDocAs(vArquivo,True); //aqui da o erro
HCalc.Free;