ScanLanComputer.cpp
上传用户:tskangjie
上传日期:2022-07-13
资源大小:39k
文件大小:2k
源码类别:

进程与线程

开发平台:

Visual C++

  1. // ScanLanComputer.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "ScanLanComputer.h"
  5. #include "ScanLanComputerDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CScanLanComputerApp
  13. BEGIN_MESSAGE_MAP(CScanLanComputerApp, CWinApp)
  14. //{{AFX_MSG_MAP(CScanLanComputerApp)
  15. ON_BN_CLICKED(IDC_BUTTON_START, OnButtonStart)
  16. //}}AFX_MSG_MAP
  17. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  18. END_MESSAGE_MAP()
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CScanLanComputerApp construction
  21. CScanLanComputerApp::CScanLanComputerApp()
  22. {
  23. // TODO: add construction code here,
  24. // Place all significant initialization in InitInstance
  25. }
  26. /////////////////////////////////////////////////////////////////////////////
  27. // The one and only CScanLanComputerApp object
  28. CScanLanComputerApp theApp;
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CScanLanComputerApp initialization
  31. BOOL CScanLanComputerApp::InitInstance()
  32. {
  33. if (!AfxSocketInit())
  34. {
  35. AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
  36. return FALSE;
  37. }
  38. AfxEnableControlContainer();
  39. // Standard initialization
  40. // If you are not using these features and wish to reduce the size
  41. //  of your final executable, you should remove from the following
  42. //  the specific initialization routines you do not need.
  43. #ifdef _AFXDLL
  44. Enable3dControls(); // Call this when using MFC in a shared DLL
  45. #else
  46. Enable3dControlsStatic(); // Call this when linking to MFC statically
  47. #endif
  48. CScanLanComputerDlg dlg;
  49. m_pMainWnd = &dlg;
  50. int nResponse = dlg.DoModal();
  51. if (nResponse == IDOK)
  52. {
  53. // TODO: Place code here to handle when the dialog is
  54. //  dismissed with OK
  55. }
  56. else if (nResponse == IDCANCEL)
  57. {
  58. // TODO: Place code here to handle when the dialog is
  59. //  dismissed with Cancel
  60. }
  61. // Since the dialog has been closed, return FALSE so that we exit the
  62. //  application, rather than start the application's message pump.
  63. return FALSE;
  64. }
  65. void CScanLanComputerApp::OnButtonStart() 
  66. {
  67. // TODO: Add your control notification handler code here
  68. }