home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c031 / 8.ddi / MFC / SAMPLES / CHART / RESOURCE.H$ / resource
Encoding:
C/C++ Source or Header  |  1992-03-18  |  1.4 KB  |  54 lines

  1. /* resource.h : Defines the resource constants 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. // This file contains only #define directives, thus it can be
  14. // included in the resource script.
  15. */
  16.  
  17.  
  18. #ifndef __RESOURCE_H__
  19. #define __RESOURCE_H__
  20.  
  21. ////////////////////////////////////////////////////////////////////////////
  22. //  ENTRYDLG CONTROL VALUES
  23.  
  24. #define BTN_ADD         100
  25. #define BTN_DEL         101
  26. #define EDIT_VALUE      104
  27. #define EDIT_LABEL      106
  28. #define EDIT_TITLE      108
  29. #define LIST_BOX        105
  30.  
  31. ////////////////////////////////////////////////////////////////////////////
  32. //  MENU CONTROL VALUES
  33.  
  34. #define IDM_NEW         10
  35. #define IDM_OPEN        11
  36. #define IDM_SAVE        12
  37. #define IDM_SAVEAS      13
  38. #define IDM_CHANGE      14
  39. #define IDM_PRINT       15
  40. #define IDM_EXIT        16
  41.  
  42. #define IDM_BAR         20
  43. #define IDM_LINE        21
  44.  
  45. #define IDM_MAXIMIZE    30
  46. #define IDM_NEXT        31
  47. #define IDM_RESTORE     32
  48.  
  49. #define IDM_ABOUT       40
  50.  
  51.  
  52. #endif // __RESOURCE_H__
  53.  
  54.