Board index » cppbuilder » ChartFX Financial Charts

ChartFX Financial Charts

I got one really big problem which I've been looking through for the
past few days, which makes other processes I want to do, more difficult.

You see, the examples in the Programmer's guide of ChartFX makes
use of the FinExt example, which I understand is a variable declared as
FinancialCharts, as in the code :

Dim FinExt As FinancialCharts
Set FinExt = ChartFX1.GetExtension("FinancialChartsExt.FinancialCharts")

But since I am using C++ Builder, I 've been finding ways on how I could
create the same variable where I could place the resulting value for my
GetExtension or AddExtension methods. I cannot find a FinancialCharts
class from C++ Builder.

Please help me!

Regards,
JONILIE L.  ECHAVEZ
Software Engineer
iDS Finance
http://www.idsfinance.com

 

Re:ChartFX Financial Charts


I think Chartfx programmers guide is written for Delphi only.

Try this
Set FinExt = ChartFX1->GetExtension("FinancialChartsExt->FinancialCharts")
intead of
Set FinExt = ChartFX1.GetExtension("FinancialChartsExt.FinancialCharts")

Jonilie Echavez <jecha...@idsfinance.com> a crit dans le message :
3ae51ed8_2@dnews...

Quote
> I got one really big problem which I've been looking through for the
> past few days, which makes other processes I want to do, more difficult.

> You see, the examples in the Programmer's guide of ChartFX makes
> use of the FinExt example, which I understand is a variable declared as
> FinancialCharts, as in the code :

> Dim FinExt As FinancialCharts
> Set FinExt = ChartFX1.GetExtension("FinancialChartsExt.FinancialCharts")

> But since I am using C++ Builder, I 've been finding ways on how I could
> create the same variable where I could place the resulting value for my
> GetExtension or AddExtension methods. I cannot find a FinancialCharts
> class from C++ Builder.

> Please help me!

> Regards,
> JONILIE L.  ECHAVEZ
> Software Engineer
> iDS Finance
> http://www.idsfinance.com

Other Threads