Page 1 of 1

Getting version info

Posted: Sat Jan 07, 2012 12:04 am
by 9347200
Hi,

I am using teechart activex v7, how do I get the version of the teechart from my code ? I am looking at the teechart object and I don't find any methods. I want a method which returns the version of teechart.

Thanks,

Re: Getting version info

Posted: Mon Jan 09, 2012 12:52 pm
by yeray
Hi,

The following call works fine for me here in VB6:

Code: Select all

MsgBox TChart1.Version

Re: Getting version info

Posted: Mon Jan 09, 2012 4:19 pm
by 9347200
Hi,

I don't see any such method. I am using vc++ and please note I am using activex V7.

-Thanks

Re: Getting version info

Posted: Tue Jan 10, 2012 9:25 am
by yeray
Hi,

If your chart is called m_Chart1, in VC++ 6 you should be able to do:

Code: Select all

MessageBox(m_Chart1.GetVersion());