GetZZLDisplay.cpp
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (at your option) any later version.
  8.  *
  9.  *  This program is distributed in the hope that it will be useful,
  10.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  *  GNU General Public License for more details.
  13.  *
  14.  *  You should have received a copy of the GNU General Public License
  15.  *  along with this program; if not, write to the Free Software
  16.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  */
  19. //
  20. #include "stdafx.h"
  21. #include "GetZZLDisplay.h"
  22. #include "GetZZLDisplayDlg.h"
  23. #ifdef _DEBUG
  24. #define new DEBUG_NEW
  25. #endif
  26. // CGetZZLDisplayApp
  27. BEGIN_MESSAGE_MAP(CGetZZLDisplayApp, CWinApp)
  28. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  29. END_MESSAGE_MAP()
  30. // CGetZZLDisplayApp 构造
  31. CGetZZLDisplayApp::CGetZZLDisplayApp()
  32. {
  33. // TODO: 在此处添加构造代码,
  34. // 将所有重要的初始化放置在 InitInstance 中
  35. }
  36. // 唯一的一个 CGetZZLDisplayApp 对象
  37. CGetZZLDisplayApp theApp;
  38. // CGetZZLDisplayApp 初始化
  39. BOOL CGetZZLDisplayApp::InitInstance()
  40. {
  41. // 如果一个运行在 Windows XP 上的应用程序清单指定要
  42. // 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
  43. //则需要 InitCommonControls()。否则,将无法创建窗口。
  44. InitCommonControls();
  45. CWinApp::InitInstance();
  46. AfxEnableControlContainer();
  47. // 标准初始化
  48. // 如果未使用这些功能并希望减小
  49. // 最终可执行文件的大小,则应移除下列
  50. // 不需要的特定初始化例程
  51. // 更改用于存储设置的注册表项
  52. // TODO: 应适当修改该字符串,
  53. // 例如修改为公司或组织名
  54. SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
  55. CGetZZLDisplayDlg dlg;
  56. m_pMainWnd = &dlg;
  57. INT_PTR nResponse = dlg.DoModal();
  58. if (nResponse == IDOK)
  59. {
  60. // TODO: 在此放置处理何时用“确定”来关闭
  61. //对话框的代码
  62. }
  63. else if (nResponse == IDCANCEL)
  64. {
  65. // TODO: 在此放置处理何时用“取消”来关闭
  66. //对话框的代码
  67. }
  68. // 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
  69. // 而不是启动应用程序的消息泵。
  70. return FALSE;
  71. }