Hi,
I'm trying to convert an Excel-file to Pdf using Aspose.Cells. Using version 5.1.2.0 version I get a 0 byte Pdf-file and no error. Using version 5.1.2.3 I catch a CellsException telling me "Input string was not in a correct format.".
Code that produces the error:
var license = new Aspose.Cells.License();
license.SetLicense("Aspose.Total.lic");
try
{
var wb = new Aspose.Cells.Workbook("putcall.xls");
wb.Save("putcall.pdf", Aspose.Cells.SaveFormat.Pdf);
}
catch (Exception ex)
{
var m = ex.Message;
}
Best regards,
Thomas