Hi Massimo,
Thank you for your interest in NOV Rich Text Editor. This is caused because the control cannot find a valid license key. When you install the product (NOV) on a machine it will automatically generate an evaluation license key good for 60 which you can apply through code in your compiled application and distribute with them. For example:
using Nevron.Nov;
using System;
using System.Windows.Forms;
namespace WindowsFormsApp4
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
NLicenseManager.Instance.SetLicense(new NLicense("360e4975647700689dbae656063cb6e6969600f5029a0cd1"));
Application.Run(new Form1());
}
}
}
Shows the program entry point of a standard WinForm app which unlocks NOV for evaluation (the key was generated today and you can also use it in your application). You can apply the license key anywhere in the program before you actually show the control (form constructors / load etc.). The automatically generated key can be found when you launch license key manager shipped with the product.
Hope this helps - let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team