I can run the form outside the project and the pie graph will appear.
Looks fine. I have added the classes that are in the sample project to my project.
I have a messagebox in the init and it displays. I get an hour glass then nothing happens when I
do form pctsum except the messagebox() display.
I have the form attributes set to modal and always on top.
I created a table with one record for each slice of the pie.
Here is my code in the init.
MESSAGEBOX('HERE IN INIT',0) && i see this.
SELECT * FROM pctsum INTO CURSOR pctsum1
SELECT PCTSUM1 && with a brow here. I have data.
WITH this.foxcharts1 as FoxCharts of "FoxCharts.vcx"
.sourceAlias = "Pctsum1"
.chartscount=1
.charttype= 1 && pie chart
WITH .fields(1)
.fieldvalue = "Col1"
ENDWITH
.DrawChart()
ENDWITH
select sales
Please help.
Looks fine. I have added the classes that are in the sample project to my project.
I have a messagebox in the init and it displays. I get an hour glass then nothing happens when I
do form pctsum except the messagebox() display.
I have the form attributes set to modal and always on top.
I created a table with one record for each slice of the pie.
Here is my code in the init.
MESSAGEBOX('HERE IN INIT',0) && i see this.
SELECT * FROM pctsum INTO CURSOR pctsum1
SELECT PCTSUM1 && with a brow here. I have data.
WITH this.foxcharts1 as FoxCharts of "FoxCharts.vcx"
.sourceAlias = "Pctsum1"
.chartscount=1
.charttype= 1 && pie chart
WITH .fields(1)
.fieldvalue = "Col1"
ENDWITH
.DrawChart()
ENDWITH
select sales
Please help.