home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / w3_prog / glbedit.arj / GENERIC.RC < prev    next >
Text File  |  1991-10-09  |  1KB  |  39 lines

  1. // Copyright (c) 1991 Microsoft Corporation. All rights reserved.
  2.  
  3. #include "windows.h"
  4. #include "generic.h"
  5.  
  6. GenericMenu MENU PRELOAD MOVEABLE DISCARDABLE
  7. BEGIN
  8.    POPUP   "&Edit"
  9.    BEGIN
  10.       MENUITEM "&Undo\tAlt+BkSp",              IDM_UNDO
  11.       MENUITEM SEPARATOR
  12.       MENUITEM "Cu&t\tShift+Del",              IDM_CUT
  13.       MENUITEM "&Copy\tCtrl+Ins",              IDM_COPY
  14.       MENUITEM "&Paste\tShift+Ins",            IDM_PASTE
  15.       MENUITEM "&Delete\tDel",                 IDM_CLEAR
  16.       MENUITEM SEPARATOR
  17.       MENUITEM "&Select All\tShift+F10",       IDM_SELECTALL
  18.       MENUITEM SEPARATOR
  19.       MENUITEM "About Generic...",             IDM_ABOUT
  20.    END
  21. END
  22.  
  23. AboutBox DIALOG LOADONCALL MOVEABLE DISCARDABLE 22, 17, 144, 75
  24. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  25. CAPTION "About Generic"
  26. BEGIN
  27.    CTEXT "Microsoft Windows",    -1,   0,   5, 144, 8
  28.    CTEXT "Generic Application",  -1,   0,  14, 144, 8
  29.    CTEXT "Version 3.0",          -1,   0,  34, 144, 8
  30.    DEFPUSHBUTTON "OK",  IDOK, 53, 59, 32, 14, WS_GROUP
  31. END
  32.  
  33. Accel  ACCELERATORS LOADONCALL MOVEABLE DISCARDABLE
  34. BEGIN
  35.     VK_BACK,  IDM_UNDO,      VIRTKEY, ALT
  36.     VK_F10,   IDM_SELECTALL, VIRTKEY, SHIFT
  37. END
  38.  
  39.