Key von Syncfusion wird aus der Dongle nun gelesen

This commit is contained in:
HuskyTeufel
2022-03-25 15:47:46 +01:00
parent d96c618a21
commit d350791acc
10 changed files with 145 additions and 42 deletions

View File

@@ -45,7 +45,10 @@ namespace BerichtGen
{
InitializeComponent();
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NDE3ODkzQDMxMzgyZTM0MmUzMFU4Zi9HelJVSzVxQXVLdlp6NTRuOXhwR1JtdzgybVBsdGNDeGZwdkhwNGM9");
Dongle dongle = new Dongle(60);
Trace.WriteLine("FrmOptions: " + dongle.SyncfusionKey);
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(dongle.SyncfusionKey);
dongle.CleanDongle();
this.firma = firma;

View File

@@ -97,7 +97,9 @@ namespace BerichtGen
/// <returns></returns>
public static bool GetGraphics(List<UVcsvStrukture> struktures,string destinationPath)
{
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("NDE3ODkzQDMxMzgyZTM0MmUzMFU4Zi9HelJVSzVxQXVLdlp6NTRuOXhwR1JtdzgybVBsdGNDeGZwdkhwNGM9");
Dongle dongle = new Dongle(60);
Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense(dongle.SyncfusionKey);
dongle.CleanDongle();
ChartControl tempChart = getGraph(struktures, "Temperatur");
if (tempChart == null) return false;