How to Manipulate Embedded Objects in General Fields

Last reviewed: October 18, 1996
Article ID: Q131029
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 5.0

SUMMARY

If an OLE object is embedded (not linked) in a General field, you cannot control the object directly by using OLE automation. Instead, you must first place the object on a form.

MORE INFORMATION

You cannot use the CREATEOBJECT or GETOBJECT functions to create a reference to an embedded OLE object in a General field. However, the field can be manipulated if it is placed on a form. From a programming standpoint, if the form is never made visible, the operation on the object is transparent to the user.

Code Sample

The following example creates a table that has a General field, places a Microsoft Graph object in the first record, and then programatically adds a title to the chart.

* Create the table with the embedded object: CREATE TABLE grphaut(olegraph g) APPEND BLANK

APPEND GENERAL olegraph CLASS "MSGraph"   && Appends default MSGraph Data.

* Use OLE automation to change the appearance of the chart: frmDummy =CREATEOBJECT("form") frmDummy.ADDOBJECT("oleGraph","OleBoundControl") WITH frmDummy.oleGraph
   .Height = 300
   .Width = 500
   .ControlSource = "grphaut.olegraph"
   .HasTitle = .T.
   .ChartTitle.Caption = "The Spanish Inquisition"
   .Type=3       && Type = 3 produces a bar chart, 4 produces a line chart
ENDWITH RELEASE frmDummy

The actual OLE automation commands depend on the type of object stored in the General field.

For more information on passing data to Microsoft Graph programatically, please see the following article in the Microsoft Knowledge Base:

  ARTICLE-ID: Q129533
  TITLE     : How to Pass Data to Microsoft Graph Programmatically


Additional reference words: 5.00 3.00 VFoxWin
KBCategory: kbole kbinterop kbcode
KBSubcategory: FxinteropOle


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: October 18, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.