MonitorTest.cpp
上传用户:maidou0901
上传日期:2008-10-19
资源大小:68k
文件大小:1k
源码类别:

多显示器编程

开发平台:

Visual C++

  1. // MonitorTest.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "MonitorTest.h"
  5. #include "MonitorTestDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CMonitorTestApp
  10. BEGIN_MESSAGE_MAP(CMonitorTestApp, CWinApp)
  11. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  12. END_MESSAGE_MAP()
  13. // CMonitorTestApp construction
  14. CMonitorTestApp::CMonitorTestApp()
  15. {
  16. // TODO: add construction code here,
  17. // Place all significant initialization in InitInstance
  18. }
  19. // The one and only CMonitorTestApp object
  20. CMonitorTestApp theApp;
  21. // CMonitorTestApp initialization
  22. BOOL CMonitorTestApp::InitInstance()
  23. {
  24. // InitCommonControls() is required on Windows XP if an application
  25. // manifest specifies use of ComCtl32.dll version 6 or later to enable
  26. // visual styles.  Otherwise, any window creation will fail.
  27. InitCommonControls();
  28. CWinApp::InitInstance();
  29. AfxEnableControlContainer();
  30. CMonitorTestDlg dlg;
  31. m_pMainWnd = &dlg;
  32. INT_PTR nResponse = dlg.DoModal();
  33. if (nResponse == IDOK)
  34. {
  35. // TODO: Place code here to handle when the dialog is
  36. //  dismissed with OK
  37. }
  38. else if (nResponse == IDCANCEL)
  39. {
  40. // TODO: Place code here to handle when the dialog is
  41. //  dismissed with Cancel
  42. }
  43. // Since the dialog has been closed, return FALSE so that we exit the
  44. //  application, rather than start the application's message pump.
  45. return FALSE;
  46. }