home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c031 / 8.ddi / MFC / SAMPLES / CHART / CHART.RC$ / chart
Encoding:
Text File  |  1992-03-18  |  1.4 KB  |  61 lines

  1. /* chart.rc : Defines the resources for the 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 "resource.h"
  17.  
  18. chart ICON CHART.ICO
  19.  
  20. MainAccelTable ACCELERATORS
  21. {
  22.     VK_F1, IDM_ABOUT,   VIRTKEY
  23. }
  24.  
  25. MainMenu MENU
  26. {
  27.     POPUP "&File"
  28.     {
  29.         MENUITEM "&New...",          IDM_NEW
  30.         MENUITEM "&Open...",         IDM_OPEN
  31.         MENUITEM "&Save",            IDM_SAVE
  32.         MENUITEM "Save &As...",      IDM_SAVEAS
  33.         MENUITEM SEPARATOR
  34.         MENUITEM "Change &Data...",  IDM_CHANGE
  35.         MENUITEM "&Print",           IDM_PRINT
  36.         MENUITEM SEPARATOR
  37.         MENUITEM "E&xit",            IDM_EXIT
  38.     }
  39.     POPUP "&Options"
  40.     {
  41.         MENUITEM "&Bars",            IDM_BAR
  42.         MENUITEM "&Lines",           IDM_LINE
  43.     }
  44.     POPUP "&Help"
  45.     {
  46.         MENUITEM "&About Chart...\tF1", IDM_ABOUT
  47.     }
  48. }
  49.  
  50. PrintDlgBox DIALOG 40, 40, 120, 40
  51.     STYLE WS_POPUP | WS_CAPTION | WS_SYSMENU | WS_VISIBLE
  52.     CAPTION "Chart"
  53. {
  54.     CTEXT           "Printing chart.", -1, 4, 6, 120, 12
  55.     DEFPUSHBUTTON   "Cancel", IDCANCEL, 44, 22, 32, 14, WS_GROUP
  56. }
  57.  
  58. rcinclude about.dlg
  59.  
  60. rcinclude entry.dlg
  61.