Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Ole Graphs in VFP6
Message
From
14/05/2000 19:58:41
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
ActiveX controls in VFP
Title:
Ole Graphs in VFP6
Miscellaneous
Thread ID:
00369426
Message ID:
00369426
Views:
57
Hi, could someone please help.

I have created a graph through the query maker wizard and saved the graph to a table. Why is it that every time I update the graph with new values, the memo part of the table seems to grow. I am using the code displayed below, which is based on VFP Solutions.

Thank you in advance

Regards,
Mike Mayo

Code used
---------

currbuff=select()

#Define crlf CHR(13)+CHR(10)
#Define TAB CHR(9)
#Define ret_loc ""

Local lcdata

Select groupgraph

lcData = " " + TAB + RET_LOC + CRLF

Go top
Scan while !eof()
lcdata = lcdata + alltrim(month)
lcdata = lcdata + TAB
lcdata = lcdata + ALLTRIM(STR(xvalue)) + crlf
Endscan

Select grpdisgraph
Append GENERAL olegraph DATA lcdata

Select(currbuff)
Reply
Map
View

Click here to load this message in the networking platform