home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / prog_pm / chap15 / typeclip.rc < prev    next >
Encoding:
Text File  |  1989-01-09  |  682 b   |  26 lines

  1. /*----------------------------------
  2.    TYPECLIP.RC resource script file
  3.   ----------------------------------*/
  4.  
  5. #include <os2.h>
  6. #include "typeclip.h"
  7.  
  8. MENU ID_RESOURCE
  9.      {
  10.      SUBMENU "~Edit",         IDM_EDIT
  11.           {
  12.           MENUITEM "Cu~t\tShift+Del",   IDM_CUT
  13.           MENUITEM "~Copy\tCtrl+Ins",   IDM_COPY
  14.           MENUITEM "~Paste\tShift+Ins", IDM_PASTE
  15.           MENUITEM "C~lear\tDel",       IDM_CLEAR
  16.           }
  17.      }
  18.  
  19. ACCELTABLE ID_RESOURCE
  20.      {
  21.      VK_DELETE, IDM_CUT,   VIRTUALKEY, SHIFT
  22.      VK_INSERT, IDM_COPY,  VIRTUALKEY, CONTROL
  23.      VK_INSERT, IDM_PASTE, VIRTUALKEY, SHIFT
  24.      VK_DELETE, IDM_CLEAR, VIRTUALKEY
  25.      }
  26.