Neobus.cpp
上传用户:yokoluohf
上传日期:2013-02-25
资源大小:769k
文件大小:1k
源码类别:

GIS编程

开发平台:

Visual C++

  1. // Neobus.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Neobus.h"
  5. #include "NeobusDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CNeobusApp
  10. BEGIN_MESSAGE_MAP(CNeobusApp, CWinApp)
  11. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  12. END_MESSAGE_MAP()
  13. // CNeobusApp construction
  14. CNeobusApp::CNeobusApp()
  15. {
  16. // TODO: add construction code here,
  17. // Place all significant initialization in InitInstance
  18. }
  19. // The one and only CNeobusApp object
  20. CNeobusApp theApp;
  21. // CNeobusApp initialization
  22. BOOL CNeobusApp::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. CNeobusDlg 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. }