Hi Jacques,
I meant that you could try generating new VC++ classes as is explained in the link above, or you could try forcing the classes provided with the 8.0.0.6 to be used.
The TeeChart installer doesn't change your project's references.
Release build scColorGrid does not work properly
Re: Release build scColorGrid does not work properly
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Release build scColorGrid does not work properly
Hello,
I used the latest installer and used the C files that came with the installer.
I am willing to try and recreate the files but VC 6 and VS2008 differ, could you explain how to do it in VS2008
Regards
JB
I used the latest installer and used the C files that came with the installer.
I am willing to try and recreate the files but VC 6 and VS2008 differ, could you explain how to do it in VS2008
Regards
JB
Re: Release build scColorGrid does not work properly
Hi Jacques,
I've been testing a little bit more with your application and I've seen that all your series YValues are 0. So I supposed that there were a mistake in the series population procedure and changing the for loop where you add elements to your array for the following, it seems to work fine here:
I've been testing a little bit more with your application and I've seen that all your series YValues are 0. So I supposed that there were a mistake in the series population procedure and changing the for loop where you add elements to your array for the following, it seems to work fine here:
Code: Select all
for(long i = 0; i < numPoints; i++) {
//plotData.PutElement(&i, (double *)(&i));
double val = i;
plotData.PutElement(&i, &(val));
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Release build scColorGrid does not work properly
Hello,
Thanks, its working.
Regards
JB
Thanks, its working.
Regards
JB