License problem in dll plugin

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
mynameisjc
Newbie
Newbie
Posts: 2
Joined: Tue May 06, 2008 12:00 am

License problem in dll plugin

Post by mynameisjc » Fri Mar 09, 2012 9:47 am

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?

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: License problem in dll plugin

Post by Sandra » Fri Mar 09, 2012 3:47 pm

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,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

mynameisjc
Newbie
Newbie
Posts: 2
Joined: Tue May 06, 2008 12:00 am

Re: License problem in dll plugin

Post by mynameisjc » Mon Mar 12, 2012 1:23 am

Thanks for the quick reply, Sandra.
I download the lastest version and it works fine now.
Thanks!

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: License problem in dll plugin

Post by Sandra » Mon Mar 12, 2012 12:12 pm

Hello mynameisjc,

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

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply