Hi:
Please save the attached file in the same directory with your project and run the following program. After you run it, open template_out.xlsx in Excel 2010. Excel will display the message:
Excel found unreadable content in ‘Template.xlsx’. Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes.
If I click yes, Excel fixes the error and it shows some other message with a link to an xml file. The spreadsheet was created with Excel 2010.
So, my question is what does aspose do when the spreadsheet is saved that triggers Excel to repair it? I am using aspose.cells .Net 7.3.3.0.
One more question, unrelated, we have purchased a small business site license. Do I need to link my id to that license somehow? Do I have any advantages when it comes to support vs posting to this forum?
Thank you
using System;
using System.Data;
using System.Drawing;
using System.Drawing.Imaging;
using System.Linq.Expressions;
using System.Text;
using Aspose.Cells;
using Aspose.Cells.Drawing;
using Aspose.Cells.Pivot;
using Aspose.Cells.Rendering;
namespace TestAspose
{
class Program
{
static void Main(string[] args)
{
// Procedure25();
Procedure27();
Console.WriteLine(“Done!”);
Console.ReadKey();
}
private static void Procedure27()
{
Workbook workbook = new Workbook(@"…\template.xlsx");
workbook.Save(@"…\template_out.xlsx", SaveFormat.Xlsx);
}
}
}