User (Legacy) Posted September 12, 2002 Report Share Posted September 12, 2002 How do I read the title from a chart in cfx4032? I want to find out what title the user set in the ChartFX properties dialog, but when I execute this code, I always get back a NULL pointer: LPSTR title = m_pChart->Title[CHART_TOPTIT]; Link to comment Share on other sites More sharing options...
Software FX Posted September 13, 2002 Report Share Posted September 13, 2002 What module are you using ? DLL, OCX ? What version ? If using the DLL please check out article Q1381049 in our kb. The code will look something like this: char s[256]. *sp; char *sp; sp = s; m_pChartFX->get_Title(CHART_TOPTIT,&sp); -- FP Software FX, Inc. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.