Sorry for the delay. Here are to two files you requested.
The file labeled with 5.3 is from version 5.3.0 and works on our Blackberries in Sheets to Go.
The file labeled with 7.2.0.4 is from version 7.2.0.4 and does not work on our Blackberries in Sheets to Go.
Here is the code used for each file:
Aspose.Cells.
License l = new License();
l.SetLicense(
@".\Aspose.Cells.lic");
Workbook wb = new Workbook();
Worksheet ws = wb.Worksheets[0];
ws.Cells[0, 0].PutValue(
"This is a test");
ws.Cells[1, 0].PutValue(1);
ws.Cells[2, 0].PutValue(2);
ws.Cells[3, 0].PutValue(3);
ws.Cells[4, 0].PutValue(4);
ws.Cells[5, 0].PutValue(5);
ws.Cells[6, 0].PutValue(6);
ws.Cells[1, 1].PutValue(2);
ws.Cells[2, 1].PutValue(3);
ws.Cells[3, 1].PutValue(4);
ws.Cells[4, 1].PutValue(5);
ws.Cells[5, 1].PutValue(6);
ws.Cells[6, 1].PutValue(7);
ws.Cells[7, 0].PutValue(
"Finished");
wb.Save(@".\ApsoseTest.7.2.0.4.xlsx", SaveFormat.Xlsx);