08-09-2005 05:26 PM
Hi Elton,
I apologize for asking so many questions, but I really need to figure this one out. It appears that I need to liscence the ScatterGraph object or any ActiveX controls I have. I read up on the help file and it says I just need to re add all my reference files. I did just that , but it still asks that I need to liscence it when I run my program.
Any Ideas on how to liscence it properly?
08-09-2005 05:53 PM
double
values __gc[] = new double __gc[6];double values2 __gc[] = new double __gc[6];
int x;
for(x=0; x<6; x++)
{
values[x] = x+2;
values2[x] = x+3;
scatterGraph1->PlotXY(values[x], values2[x]);
}
What is wrong with the logic of the above code?
08-10-2005 08:50 AM