How To Programmatically Embed and Link Part of a FileID: Q100444 2.5x 2.6x 3.00 WINDOWS kbole kbprg The information in this article applies to:
SUMMARYThe APPEND GENERAL command embeds or links an entire source file. To embed or link part of a file, select the part of the source file you want to embed or link, copy the text to the Windows Clipboard, and in FoxPro choose Paste or Paste Special from the Edit menu.
MORE INFORMATIONThe following steps can be used to perform this operation programmatically: 1. Open the server application for the file you want to link or embed 2. In the server application, open the file you want to link or embed.
3. Select the information that you want to link or embed. 4. Copy the selection to the Windows Clipboard. 5. In FoxPro for Windows, run the following code:
To embed data, the command listed above should be KEYBOARD "{S} {P}".
6. In Visual FoxPro for Windows, use one of the following methods:
NOTE: Be sure that the "object" specified in "MODIFY GENERAL object NOWAIT"
is the field name from the table.
The above code links the contents of the Windows Clipboard to a new record. To embed the contents of the Clipboard, change the last KEYBOARD command to KEYBOARD "{S} {P}". The delay loop is needed to ensure that FoxPro interprets the keystrokes properly. Depending on your CPU's processor speed and the amount of memory available to FoxPro, you many need to make the delay loop longer. KBCategory: kbole kbprg KBSubcategory: FxinteropOle Additional reference words: VFoxWin 3.00 FoxWin 2.50 2.50a 2.50b 2.60 2.60a
|
Last Reviewed: October 23, 1998 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |