Programmatically Copying Text to/from Windows ClipboardLast reviewed: April 30, 1996Article ID: Q108824 |
The information in this article applies to:
SUMMARYIn FoxPro for Windows, the system memory variable _CLIPTEXT provides access to the Windows system Clipboard for transferring text data (not graphics).
MORE INFORMATIONIn FoxPro for MS-DOS, copying or cutting text places that text in an internal clipboard used only by FoxPro for MS-DOS. In Windows-based applications, including FoxPro for Windows, copying or cutting an item places that item in the Windows Clipboard, which is available to other Windows applications. To view the contents of the Windows Clipboard, open the Main group in Program Manager, and in Windows 3.0 and 3.1, start Clipboard or in Windows for Workgroups 3.1 and 3.11, start Clipbook Viewer (which contains Clipboard). Note, however, that Clipboard does not need to be running for data to be stored in it. NOTE: You can pass only text data using _CLIPTEXT, although the Windows Clipboard can store graphics as well as text.
Example of Copying Text from FoxPro to Notepad
Text from FoxPro Example of Copying Text From Memo Field to Clipboard
USE <table_name> && Open a database that contains a memo field SCATTER MEMVAR MEMO _CLIPTEXT=m.<memo_field_name> && Copy memo contents to clipboard Example of Copying Text from Notepad to FoxPro
Text from Notepad |
Additional reference words: VFoxWin 3.00 FoxWin 2.50 2.50a 2.50b
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |