Page 1 of 1

License problem in dll plugin

Posted: Fri Mar 09, 2012 9:47 am
by 13048981
I build my project to a dll file with licenses.licx.
It will be called by other application by reflection.
My TeeChart version is 3.5.3498.27368.
I had try to declare the chart like this.

Code: Select all

this.tChart1 = new Steema.TeeChart.TChart(this);
Then I will get this error message.
Image
Can anyone help?

Re: License problem in dll plugin

Posted: Fri Mar 09, 2012 3:47 pm
by 10050769
Hello mynameisjc,

You need know that exist a newest version 3 of TeeChartFor.Net. I recommend you download last version 3 that you can find here. Moreover, I have made a simple test using next code and works fine for me with last version 3:

Code: Select all

  Steema.TeeChart.TChart tchart1;
        private void InitializeChart()
        {
            this.tchart1 = new Steema.TeeChart.TChart(this);
            this.Controls.Add(tchart1);
        }
Can you tell us if previous code works as you expect?

I hope will help.
Thanks,

Re: License problem in dll plugin

Posted: Mon Mar 12, 2012 1:23 am
by 13048981
Thanks for the quick reply, Sandra.
I download the lastest version and it works fine now.
Thanks!

Re: License problem in dll plugin

Posted: Mon Mar 12, 2012 12:12 pm
by 10050769
Hello mynameisjc,

Good news :). I am glad that your probel have been solved

Thanks,