Multy4Dlg.cpp
上传用户:shenmao
上传日期:2014-12-06
资源大小:238k
文件大小:5k
源码类别:

进程与线程

开发平台:

Visual C++

  1. // Multy4Dlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Multy4.h"
  5. #include "Multy4Dlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. volatile BOOL m_bRunFlag=TRUE; 
  14. DWORD WINAPI threadFunc(LPVOID threadNum)
  15. {
  16.  while(m_bRunFlag)
  17.  {
  18.   Sleep(3000);
  19.  }
  20.  return 0;
  21. }
  22. class CAboutDlg : public CDialog
  23. {
  24. public:
  25. CAboutDlg();
  26. // Dialog Data
  27. //{{AFX_DATA(CAboutDlg)
  28. enum { IDD = IDD_ABOUTBOX };
  29. //}}AFX_DATA
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CAboutDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. //{{AFX_MSG(CAboutDlg)
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  42. {
  43. //{{AFX_DATA_INIT(CAboutDlg)
  44. //}}AFX_DATA_INIT
  45. }
  46. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  47. {
  48. CDialog::DoDataExchange(pDX);
  49. //{{AFX_DATA_MAP(CAboutDlg)
  50. //}}AFX_DATA_MAP
  51. }
  52. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  53. //{{AFX_MSG_MAP(CAboutDlg)
  54. // No message handlers
  55. //}}AFX_MSG_MAP
  56. END_MESSAGE_MAP()
  57. /////////////////////////////////////////////////////////////////////////////
  58. // CMulty4Dlg dialog
  59. CMulty4Dlg::CMulty4Dlg(CWnd* pParent /*=NULL*/)
  60. : CDialog(CMulty4Dlg::IDD, pParent)
  61. {
  62. //{{AFX_DATA_INIT(CMulty4Dlg)
  63. m_nCount = 0;
  64. //}}AFX_DATA_INIT
  65. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  66. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  67. }
  68. void CMulty4Dlg::DoDataExchange(CDataExchange* pDX)
  69. {
  70. CDialog::DoDataExchange(pDX);
  71. //{{AFX_DATA_MAP(CMulty4Dlg)
  72. DDX_Text(pDX, IDC_COUNT, m_nCount);
  73. //}}AFX_DATA_MAP
  74. }
  75. BEGIN_MESSAGE_MAP(CMulty4Dlg, CDialog)
  76. //{{AFX_MSG_MAP(CMulty4Dlg)
  77. ON_WM_SYSCOMMAND()
  78. ON_WM_PAINT()
  79. ON_WM_QUERYDRAGICON()
  80. ON_BN_CLICKED(IDC_TEST, OnTest)
  81. //}}AFX_MSG_MAP
  82. END_MESSAGE_MAP()
  83. /////////////////////////////////////////////////////////////////////////////
  84. // CMulty4Dlg message handlers
  85. BOOL CMulty4Dlg::OnInitDialog()
  86. {
  87. CDialog::OnInitDialog();
  88. // Add "About..." menu item to system menu.
  89. // IDM_ABOUTBOX must be in the system command range.
  90. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  91. ASSERT(IDM_ABOUTBOX < 0xF000);
  92. CMenu* pSysMenu = GetSystemMenu(FALSE);
  93. if (pSysMenu != NULL)
  94. {
  95. CString strAboutMenu;
  96. strAboutMenu.LoadString(IDS_ABOUTBOX);
  97. if (!strAboutMenu.IsEmpty())
  98. {
  99. pSysMenu->AppendMenu(MF_SEPARATOR);
  100. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  101. }
  102. }
  103. // Set the icon for this dialog.  The framework does this automatically
  104. //  when the application's main window is not a dialog
  105. SetIcon(m_hIcon, TRUE); // Set big icon
  106. SetIcon(m_hIcon, FALSE); // Set small icon
  107. // TODO: Add extra initialization here
  108. return TRUE;  // return TRUE  unless you set the focus to a control
  109. }
  110. void CMulty4Dlg::OnSysCommand(UINT nID, LPARAM lParam)
  111. {
  112. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  113. {
  114. CAboutDlg dlgAbout;
  115. dlgAbout.DoModal();
  116. }
  117. else
  118. {
  119. CDialog::OnSysCommand(nID, lParam);
  120. }
  121. }
  122. // If you add a minimize button to your dialog, you will need the code below
  123. //  to draw the icon.  For MFC applications using the document/view model,
  124. //  this is automatically done for you by the framework.
  125. void CMulty4Dlg::OnPaint() 
  126. {
  127. if (IsIconic())
  128. {
  129. CPaintDC dc(this); // device context for painting
  130. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  131. // Center icon in client rectangle
  132. int cxIcon = GetSystemMetrics(SM_CXICON);
  133. int cyIcon = GetSystemMetrics(SM_CYICON);
  134. CRect rect;
  135. GetClientRect(&rect);
  136. int x = (rect.Width() - cxIcon + 1) / 2;
  137. int y = (rect.Height() - cyIcon + 1) / 2;
  138. // Draw the icon
  139. dc.DrawIcon(x, y, m_hIcon);
  140. }
  141. else
  142. {
  143. CDialog::OnPaint();
  144. }
  145. }
  146. // The system calls this to obtain the cursor to display while the user drags
  147. //  the minimized window.
  148. HCURSOR CMulty4Dlg::OnQueryDragIcon()
  149. {
  150. return (HCURSOR) m_hIcon;
  151. }
  152. void CMulty4Dlg::OnTest() 
  153. {
  154.  DWORD threadID;
  155.  GetDlgItem(IDC_TEST)->EnableWindow(FALSE);
  156.  long nCount=0;
  157.  while(m_bRunFlag)
  158.  {
  159.   if(CreateThread(NULL,0,threadFunc,NULL,0,&threadID)==NULL)
  160.   {
  161.    m_bRunFlag=FALSE;
  162.    break;
  163.   }
  164.   else
  165.   {
  166.    nCount++;
  167.   }
  168.  }
  169.    //不断创建线程,直到再不能创建为止
  170.  m_nCount=nCount;
  171.  UpdateData(FALSE);
  172.  Sleep(5000);
  173.    //延时5秒,等待所有创建的线程结束
  174.  GetDlgItem(IDC_TEST)->EnableWindow(TRUE);
  175.     m_bRunFlag=TRUE;
  176. }