Release build scColorGrid does not work properly

TeeChart for ActiveX, COM and ASP
Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Release build scColorGrid does not work properly

Post by Yeray » Thu Jul 30, 2009 7:24 am

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.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

jacques
Newbie
Newbie
Posts: 30
Joined: Thu Nov 20, 2008 12:00 am
Location: South Africa
Contact:

Re: Release build scColorGrid does not work properly

Post by jacques » Mon Aug 03, 2009 8:18 am

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

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Release build scColorGrid does not work properly

Post by Yeray » Mon Aug 10, 2009 1:11 pm

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:

Code: Select all

    for(long i = 0; i < numPoints; i++) {         
		//plotData.PutElement(&i, (double *)(&i));
		double val = i;		
		plotData.PutElement(&i, &(val));
    }
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

jacques
Newbie
Newbie
Posts: 30
Joined: Thu Nov 20, 2008 12:00 am
Location: South Africa
Contact:

Re: Release build scColorGrid does not work properly

Post by jacques » Tue Aug 11, 2009 9:19 am

Hello,

Thanks, its working.

Regards
JB

Post Reply