ConectDialog.cpp
上传用户:popouu88
上传日期:2013-02-11
资源大小:2894k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. // ConectDialog.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Monitor.h"
  5. #include "ConectDialog.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. extern CMonitorApp theApp;
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CConectDialog dialog
  14. CConectDialog::CConectDialog(CWnd* pParent /*=NULL*/)
  15. : CDialog(CConectDialog::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CConectDialog)
  18. // NOTE: the ClassWizard will add member initialization here
  19. //}}AFX_DATA_INIT
  20. this->m_return = 3;
  21. }
  22. void CConectDialog::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CConectDialog)
  26. DDX_Control(pDX, IDC_ANIMATE1, m_AVI);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CConectDialog, CDialog)
  30. //{{AFX_MSG_MAP(CConectDialog)
  31. ON_WM_CLOSE()
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CConectDialog message handlers
  36. BOOL CConectDialog::OnInitDialog() 
  37. {
  38. CDialog::OnInitDialog();
  39. this->m_AVI.Open( IDR_WAIT_AVI );
  40. return true;
  41. }
  42. void CConectDialog::OnClose() 
  43. {
  44. switch( this->m_return )
  45. {
  46. case 1 :
  47. MessageBox( "该用户名不存在,请另选用户名" , "视频监控" , MB_ICONSTOP | MB_OK );
  48. break;
  49. case 2 :
  50. MessageBox( "该用户名已经在别处登陆,请另选用户名" , "视频监控" , MB_ICONSTOP | MB_OK );
  51. break;
  52. case 3 :
  53. if ( MessageBox( "本操作会退出系统,是否要退出系统" , "视频监控" , MB_ICONINFORMATION | MB_YESNO ) == IDNO )
  54. return;
  55. }
  56. CDialog::OnCancel( );
  57. }