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]; Quote 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.