I already sent an email regarding this 2 days ago, but we haven't heard back. We are receiving evaluation warning despite purchasing new license for Spire.Office. Here is a snippet of code below to show that it's working for excel (Therefore the license is correct, but not for Spire Doc). Can you please help?
Version: Spire.Office 8.5.3
.Net 7.0
- Code: Select all
var xls2 = new Workbook();
xls2.LoadFromFile($"{path}/b.xlsx");
xls2.SaveToFile($"{path}/b{DateTime.Now.Ticks}.xlsx");
// As expected, it generated a spreadsheet with evaluation
Spire.License.LicenseProvider.SetLicenseKey($"{licenseKey}");
var xls = new Workbook();
xls.LoadFromFile($"{path}/a.xlsx");
xls.SaveToFile($"{path}/a{DateTime.Now.Ticks}.xlsx");
// As expected, it generated a spreadsheet without evaluation
var document = new Document($"{path}/a.docx");
document.SaveToFile($"{path}/a{DateTime.Now.Ticks}.docx");
// Error here. It's including evaluation