home *** CD-ROM | disk | FTP | other *** search
/ Solo Programadores 22 / SOLO_22.iso / packages / win32ada / data.z / PCX.RC < prev    next >
Encoding:
Text File  |  1995-02-12  |  2.3 KB  |  70 lines

  1. // $Source: /home/harp/1/proto/monoBANK/winnt/pcx.rc,v $ 
  2. // $Revision: 1.2 $ $Date: 95/02/12 10:26:54 $ $Author: mg $ 
  3.  
  4. //-----------------------------------------------------------------------------
  5. // This is a part of the Microsoft Source Code Samples. 
  6. // Copyright (C) 1993 Microsoft Corporation.
  7. // All rights reserved. 
  8. //  
  9. // This source code is only intended as a supplement to 
  10. // Microsoft Development Tools and/or WinHelp documentation.
  11. // See these sources for detailed information regarding the 
  12. // Microsoft samples programs.
  13. //-----------------------------------------------------------------------------
  14.  
  15. #include "windows.h"
  16. #include "pcx.h"
  17.  
  18. Pcx ICON pcx.ICO
  19.  
  20. PCX MENU
  21. BEGIN
  22.         POPUP "&File"
  23.         {
  24.                 MENUITEM "&New",            IDM_NEW,        GRAYED
  25.                 MENUITEM "&Open...",        IDM_OPEN
  26.                 MENUITEM "&Save",           IDM_SAVE,       GRAYED
  27.                 MENUITEM "Save &As...",     IDM_SAVEAS,     GRAYED
  28.                 MENUITEM SEPARATOR
  29.                 MENUITEM "&Print...",       IDM_PRINT,      GRAYED
  30.                 MENUITEM "P&rint Setup...", IDM_PRINTSETUP, GRAYED
  31.                 MENUITEM SEPARATOR
  32.                 MENUITEM "E&xit",           IDM_EXIT
  33.         }
  34.         POPUP "&Edit"
  35.         {
  36.                 MENUITEM "&Undo\tCtrl+Z",   IDM_UNDO,   GRAYED
  37.                 MENUITEM SEPARATOR
  38.                 MENUITEM "Cu&t\tCtrl+X",    IDM_CUT,    GRAYED
  39.                 MENUITEM "&Copy\tCtrl+C",   IDM_COPY,   GRAYED
  40.                 MENUITEM "&Paste\tCtrl+V",  IDM_PASTE,  GRAYED
  41.                 MENUITEM "Paste &Link"      IDM_LINK,   GRAYED
  42.                 MENUITEM SEPARATOR
  43.                 MENUITEM "Lin&ks..."        IDM_LINKS,  GRAYED
  44.         }
  45.  
  46.         POPUP        "&Help"
  47.         {
  48.                 MENUITEM "&Contents",               IDM_HELPCONTENTS
  49.                 MENUITEM "&Search for Help On...",  IDM_HELPSEARCH
  50.                 MENUITEM "&How to Use Help",        IDM_HELPHELP
  51.                 MENUITEM SEPARATOR
  52.                 MENUITEM "&About PCX...",       IDM_ABOUT
  53.         }
  54. END
  55.  
  56. PCX ACCELERATORS
  57. BEGIN
  58.         VK_F1, IDM_HELPCONTENTS, VIRTKEY
  59.         "?", IDM_ABOUT, ALT
  60.         "/", IDM_ABOUT, ALT
  61. END
  62.  
  63.  
  64.  
  65. ; Bring in the dialogs:
  66. RCINCLUDE PCX.DLG
  67.  
  68. ; Bring in the version stamping information:
  69. RCINCLUDE PCX.RCV
  70.