home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / winbase / ipc / ddeml / ddeinst / install.rc < prev    next >
Text File  |  1997-10-05  |  1KB  |  46 lines

  1.  
  2. //-----------------------------------------------------------------------------
  3. // This is a part of the Microsoft Source Code Samples. 
  4. // Copyright (C) 1993-1997 Microsoft Corporation.
  5. // All rights reserved. 
  6. //  
  7. // This source code is only intended as a supplement to 
  8. // Microsoft Development Tools and/or WinHelp documentation.
  9. // See these sources for detailed information regarding the 
  10. // Microsoft samples programs.
  11. //-----------------------------------------------------------------------------
  12.  
  13.  
  14. #include <windows.h>
  15. #include "ddeinst.h"
  16. #include "dialogs.h"
  17. #include "dialogs.dlg"
  18.  
  19.  
  20. APPICON ICON install.ico
  21.  
  22. MainMenu MENU
  23. BEGIN
  24.     POPUP  "&File"
  25.     BEGIN
  26.         MENUITEM  "E&xit"                  DI_EXIT
  27.         MENUITEM  SEPARATOR
  28.         MENUITEM  "&About Install...",            DI_ABOUT
  29.     END
  30. END
  31.  
  32. AboutBox DIALOG 16, 16, 125, 76
  33. STYLE DS_MODALFRAME | WS_CAPTION | WS_VISIBLE
  34. CAPTION "About"
  35. BEGIN
  36.     CTEXT "Microsoft Windows NT" -1        0,   8, 125,  8
  37.     CTEXT "DDEML Installer"      -1,       0,  25, 125,  8
  38.     CTEXT "Version 1.00"         -1,       0,  43, 125,  8
  39.     DEFPUSHBUTTON "OK!",    IDOK,          37, 55,  50, 14
  40. END
  41.  
  42. ACCEL_ID ACCELERATORS
  43. BEGIN
  44.     VK_F3,  DI_EXIT, VIRTKEY
  45. END
  46.