home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / C++-7 / DISK8 / MFC / SAMPLES / DLLTRACE / HELLO1.RC$ / hello1
Encoding:
Text File  |  1992-01-15  |  1.2 KB  |  42 lines

  1. /* hello.rc : Defines the resources for the Hello 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_FRAME   ICON    hello1.ico
  19.  
  20. MainMenu MENU
  21. {
  22.     POPUP        "&Help"
  23.     {
  24.         MENUITEM "&About Hello...", IDM_ABOUT
  25.     }
  26.     POPUP        "&Debug"           // Debug menu
  27.     {
  28.         MENUITEM "Change Trace Flags", IDM_TRACE_FLAGS
  29.     }
  30. }
  31.  
  32. ABOUTBOX DIALOG 34, 22, 144, 75
  33. STYLE DS_MODALFRAME | WS_CAPTION | WS_SYSMENU
  34. CAPTION "About Hello"
  35. BEGIN
  36.     CTEXT           "Microsoft Windows", -1, 0, 5, 144, 8
  37.     CTEXT           "Microsoft Foundation Classes", -1, 0, 14, 144, 8
  38.     CTEXT           "Hello, Windows!", -1, 0, 23, 144, 8
  39.     CTEXT           "Version 1.0", -1, 0, 36, 144, 8
  40.     DEFPUSHBUTTON   "OK", IDOK, 56, 53, 32, 14, WS_GROUP
  41. END
  42.