home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / MINMDI / MINMDI.RC$ / minmdi
Encoding:
Text File  |  1992-01-10  |  908 b   |  41 lines

  1. /* minmdi.rc : Defines the class behaviors for MinMDI application.
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. */
  13.  
  14. #include <windows.h>
  15. #include <afxres.h>
  16. #include "resource.h"
  17.  
  18. AFX_IDI_STD_MDIFRAME    ICON    frame.ico
  19. AFX_IDI_STD_FRAME       ICON    child.ico
  20.  
  21. MainMenu MENU
  22. {
  23.     POPUP "&Window"
  24.     {
  25.         MENUITEM "&New Window", IDM_WINDOWNEW
  26.     }
  27.  
  28.     POPUP "&Help"
  29.     {
  30.         MENUITEM "&About MinMDI...\tF1", IDM_ABOUT
  31.     }
  32. }
  33.  
  34. MainAccelTable ACCELERATORS
  35. {
  36.     VK_F1,      IDM_ABOUT,  VIRTKEY
  37. }
  38.  
  39. rcinclude about.dlg
  40.  
  41.