Hola
Tengo el siguiente problema
Desarrollo un modulo, que contiene los graficos TeeChart, en una DLL
Este modulo es referenciado desde la aplicacion principal, si no se incluye el archivo licenses.licx como recurso incrustado en la aplicacion la aplicacion no funciona.
El problema esta en que en ocasiones los modulos se cargan dinamicamente, con este codigo similar a este
Assembly a = Assembly.LoadFrom(@"CSILogistic.Reports.ReportPrueba.dll");
object o = a.CreateInstance("CSILogistic.Reports.ReportPrueba.Class1");
ICSIReport r = (ICSIReport)o;
r.Configure();
r.Preview();
Es posible que cuando busque el recurso de licencia lo busque en la DLL que contiene los componentes graficos y no en el ejecutable que la llama.
Comprobacion de licencia
Hola,
For this application configuration format you need to use the plugin version of TeeChart. That allows dynamic loading of modules (dll assemblies) that use TeeChart, at runtime without need for licenses.licx in the loading application.
Please send an email to sales@steema.com, including your customer id, requesting the plugin version of TeeChart and they will send you the information necessary to access it.
Salutaciones,
Marc Meumann
For this application configuration format you need to use the plugin version of TeeChart. That allows dynamic loading of modules (dll assemblies) that use TeeChart, at runtime without need for licenses.licx in the loading application.
Please send an email to sales@steema.com, including your customer id, requesting the plugin version of TeeChart and they will send you the information necessary to access it.
Salutaciones,
Marc Meumann
Steema Support