Dear,
Using Spire.doc in C#, WPF app, when saving a doc file to PDF, it works fine on first call, then on second call a warning evaluation message in red is present on every page. It has been working fine for the last 4 years!
My license is valid (to April 2025), i tried to load the license with all methods (implicit and explicit), always same result, after 1st call an evaluation message is printed.
The methods used since many years:
- On app load i init the license:
Spire.Doc.License.LicenseProvider.SetLicenseFileName("license.doc.elic.xml");
Spire.Doc.License.LicenseProvider.LoadLicense();
Then i tried with your latest recommandation, to
using (Spire.Doc.Document _WordPdf = new Spire.Doc.Document())
{
Spire.Doc.License.LicenseProvider.SetLicenseKey("My license KEY");
Spire.Doc.License.LicenseProvider.LoadLicense();
My code here...
{
Without success, also trie to set license before the USING...
Regards
jc