INSTALL.RC
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

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