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

IP电话/视频会议

开发平台:

Visual C++

  1. // CreateConferenceDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "conference.h"
  5. #include "CreateConferenceDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. extern CConferenceApp theApp;
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCreateConferenceDlg dialog
  14. CCreateConferenceDlg::CCreateConferenceDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CCreateConferenceDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CCreateConferenceDlg)
  18. m_name = _T("");
  19. //}}AFX_DATA_INIT
  20. }
  21. void CCreateConferenceDlg::DoDataExchange(CDataExchange* pDX)
  22. {
  23. CDialog::DoDataExchange(pDX);
  24. //{{AFX_DATA_MAP(CCreateConferenceDlg)
  25. DDX_Text(pDX, IDC_CONFERENCE_EDIT, m_name);
  26. //}}AFX_DATA_MAP
  27. }
  28. BEGIN_MESSAGE_MAP(CCreateConferenceDlg, CDialog)
  29. //{{AFX_MSG_MAP(CCreateConferenceDlg)
  30. //}}AFX_MSG_MAP
  31. END_MESSAGE_MAP()
  32. /////////////////////////////////////////////////////////////////////////////
  33. // CCreateConferenceDlg message handlers
  34. void CCreateConferenceDlg::OnOK() 
  35. {
  36. this->UpdateData( );
  37. if( this->m_name.IsEmpty( ) )
  38. {
  39. MessageBox( "清除输入会议名称" , "创建会议" , MB_ICONSTOP | MB_OK ); return ;
  40. }
  41. CDialog::OnOK( );
  42. }