home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / ioc / clipbrd / clipbrd.rcx < prev    next >
Encoding:
Text File  |  1996-02-22  |  2.2 KB  |  46 lines

  1. /******************************************************************************
  2. * .FILE:         clipbrd.cpp                                                  *
  3. *                                                                             *
  4. * .DESCRIPTION:  Clipboard Sample Program : Resources                         *
  5. *                                                                             *
  6. * .COPYRIGHT:                                                                 *
  7. *    Licensed Material - Program-Property of IBM                              *
  8. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  9. *                                                                             *
  10. * .DISCLAIMER:                                                                *
  11. *   The following [enclosed] code is sample code created by IBM               *
  12. *   Corporation.  This sample code is not part of any standard IBM product    *
  13. *   and is provided to you solely for the purpose of assisting you in the     *
  14. *   development of your applications.  The code is provided 'AS IS',          *
  15. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  16. *   arising out of your use of the sample code, even if they have been        *
  17. *   advised of the possibility of such damages.                               *
  18. *                                                                             *
  19. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  20. *                                                                             *
  21. ******************************************************************************/
  22. #ifdef IC_PM
  23. #include <os2.h>
  24. #endif
  25. #include "clipbrd.h"
  26.  
  27. ICON WND_MAIN "clipbrd.ico"
  28.  
  29. MENU CNR_POPUPMENU
  30.   BEGIN
  31.     MENUITEM "~Cut   \t Sh+Del",   MI_CUT
  32.     MENUITEM "Copy   \t Ctrl+Ins", MI_COPY
  33.     MENUITEM "~Paste \t Sh+Ins",   MI_PASTE
  34.   END
  35.  
  36. STRINGTABLE
  37.   BEGIN
  38.     WND_MAIN,      "Container Clipboard Sample"
  39.     STR_HEAD_1,    "Department"
  40.     STR_HEAD_2,    "Branch"
  41.     STR_ITEM_1_1,  "Accounting"
  42.     STR_ITEM_1_2,  "Midwest Branch"
  43.     STR_ITEM_2_1,  "Sales"
  44.     STR_ITEM_2_2,  "Atlantic Coast Branch"
  45.   END
  46.