Sign In  Sign Up Live-Chat
Aspose-Banner

FAQs

New Releases, Upgrades and Fixes

 

Technical Support

 

Licensing



New Releases, Upgrades and Fixes

Where to find information about new Aspose.Editor for .NET releases?

Subscribe to the Aspose.Editor for .NET Blog to receive news about latest releases, hints and tips and other useful posts from the developers of Aspose.Editor for .NET.

Can I upgrade for free?

If you purchased a license for Aspose.Editor for .NET, it means you have a 1-year subscription for free upgrades to any new Aspose.Editor for .NET version that comes out. Any Aspose.Editor for .NET version released before the subscription expiry date - you can just download and use it.

If you want to check when your subscription expires, open the license file in Notepad (but take care not to modify and save the license file or it will no longer work) and see the SubscriptionExpiry field.


Technical Support

Is Aspose.Editor for .NET technical support free?

Yes, we provide unlimited free technical support for all users of our products including customers and evaluation.

The main avenue for technical support is the Support Forums. Post your questions and they will be answered quickly, but take time zones into consideration when expecting an answer.

I have a problem with Aspose.Editor for .NET, what should I do?

In order to help us solve your issues quicker, please follow these simple rules:

  1. Make sure you use the latest Aspose.Editor for .NET before reporting the issue, see Aspose.Editor for .NET Blog to find out about latest version.
  2. Browse through this FAQ, the Support Forum and the Aspose.Editor for .NET Documentation before reporting the issue. Maybe your question was already answered.
  3. If it still does not help, attach the original document (before processed by Aspose.Editor for .NET) and a fragment of your code that causes the problem. If you need to attach multiple files, zip them.
  4. Report one issue per thread. If you have another issue, report it in a separate thread.

Is it safe to attach my documents in the Support Forums?

Yes, it is safe. Your attachments can be downloaded only by you and Aspose staff.


Licensing

How to remove the evaluation limitation?

The evaluation limitation is present when using Aspose.Editor for .NET in evaluation mode (e.g. without a license). To remove the limitation, you need to buy a license and apply it programmatically before using it. You can also request a free 30-days temporary license to evaluate Aspose.Editor for .NET without the limitation.

How to apply a license?

  1. Copy the license file into the folder that contains assemblies of your project or include the license file as an embedded resource into your project.
  2. Create an object of the Aspose.Desktop.Editor.License class and call the SetLicense method passing only the file name of the license file without path:
[C#]

Aspose.Editor.Desktop.License license = new Aspose.Editor.Desktop.License();
license.SetLicense("Aspose.Editor.lic");


For more information about licensing see Aspose.Editor for .NET Documentation, Getting Started, Licensing section.

I applied a license like shown above, but the evaluation message is still there. What am i missing?

  • Make sure your call to SetLicense gets executed. Step through in the debugger.
  • Make sure your code does not catch and silence an exception thrown by Aspose.Editor for .NET licensing code. For example, Aspose.Editor for .NET will throw if it cannot find the license.
  • Make sure SetLicense is executed before you instantiate any other object.