home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / OSERVER / BIBREF.RC$ / bibref
Encoding:
Text File  |  1992-03-16  |  1.2 KB  |  58 lines

  1. /* bibref.rc : Defines resources for the bibref 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.  
  15. #include <windows.h>
  16. #include <afxres.h>
  17. #include "resource.h"
  18.  
  19. AFX_IDI_STD_FRAME   ICON    bibref.ico
  20.  
  21. MainMenu MENU       /* if launched non-embedded */
  22. {
  23.     POPUP        "&File"
  24.     {
  25.         MENUITEM "E&xit", IDM_EXIT
  26.     }
  27.  
  28.     POPUP        "&Item"
  29.     {
  30.         MENUITEM "&Add", IDM_ITEM_ADD
  31.         MENUITEM "&Delete", IDM_ITEM_DELETE
  32.         MENUITEM "&Modify", IDM_ITEM_MODIFY
  33.     }
  34.  
  35.     POPUP       "&Help"
  36.     {
  37.         MENUITEM "&About BibRef...", IDM_ABOUT
  38.     }
  39. }
  40.  
  41. EmbeddedMenu MENU       /* if launched embedded */
  42. {
  43.     POPUP        "&File"
  44.     {
  45.         MENUITEM "&Update", IDM_UPDATE
  46.         MENUITEM SEPARATOR
  47.         MENUITEM "E&xit and Return", IDM_EXIT
  48.     }
  49.  
  50.     POPUP       "&Help"
  51.     {
  52.         MENUITEM "&About BibRef...", IDM_ABOUT
  53.     }
  54. }
  55.  
  56. rcinclude about.dlg
  57. rcinclude item.dlg
  58.