Group: Forum Members
Last Active: 12 Years Ago
Posts: 127,
Visits: 1
|
Nevron.NLicenseManager.Instance.SetLicense(nevronLicense)
How do i added license for chart and ui on one application?
|
Group: Forum Members
Last Active: 6 Months Ago
Posts: 153,
Visits: 11
|
Hi, You can use one of the initializer constructors of NLicense that accepts an array of keys: List<NLicenseKey> keys = new List<NLicenseKey>(); keys.Add(new NLicenseKey("licenseKey1")); keys.Add(new NLicenseKey("licenseKey2")); NLicense license = new NLicense(keys); NLicenseManager.Instance.SetLicense(license); NLicenseManager.Instance.LockLicense = true; Let me know if you meet any problems. Best regards, Bob
|
Group: Forum Members
Last Active: 12 Years Ago
Posts: 127,
Visits: 1
|
I implemented these, no problem so far. Thanks,
|