Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
GRAPH
Message
 
To
18/03/2000 14:58:04
General information
Forum:
Visual FoxPro
Category:
Classes - VCX
Title:
Re: GRAPH
Miscellaneous
Thread ID:
00347477
Message ID:
00347842
Views:
24
You will need a general field in the table and then you will store the graph in this general field, sort of like a memo is stored. Here is an example.

lcGeneralString = "" + Chr(9) + "Male" + Chr(9) + "Female" + Chr(13) + Chr(10) + ;
"Gender" + Chr(9) + AllTrim(Str(This.iMale)) + Chr(9) + AllTrim(Str(This.iFemale)) + Chr(13) + Chr(10)

Append General GenderGraph Class "MSGraph.Chart" Data lcGeneralString

Once you have this you can either double-click on the field and edit it to what you want or you can programatically format it as an olebound object on a form (hidden).

Good Luck
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform