Programmatically Copying Text to/from Windows Clipboard

Last reviewed: April 30, 1996
Article ID: Q108824
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0
  • Microsoft FoxPro for Windows, versions 2.5, 2.5a, and 2.5b

SUMMARY

In FoxPro for Windows, the system memory variable _CLIPTEXT provides access to the Windows system Clipboard for transferring text data (not graphics).

MORE INFORMATION

In 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

  1. Start FoxPro for Windows.

  2. Type the following command in the Command window:

          _CLIPTEXT = "Text from FoxPro"
    

  3. Minimize or quit FoxPro.

  4. Start the Windows Notepad program (usually found in the Accessories group).

  5. From the Edit menu, choose Paste.

Notepad now contains the following line:

   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

  1. Start Notepad.

  2. Type the following line in Notepad:

          Text from Notepad
    

  3. Select the line of text (so that it is highlighted).

  4. From the Edit menu, choose Copy.

  5. Minimize or quit Notepad.

  6. Start FoxPro for Windows.

  7. Type the following command in the Command window:

          ? _CLIPTEXT
    

The following is displayed on the FoxPro Desktop:

   Text from Notepad


Additional reference words: VFoxWin 3.00 FoxWin 2.50 2.50a 2.50b
clipbrd.exe
KBCategory: kbprg kbhowto
KBSubcategory: FxtoolGeneral


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: April 30, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.