SetupDlg.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // SetupDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "ChatClient.h"
  5. #include "SetupDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSetupDlg dialog
  13. CSetupDlg::CSetupDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CSetupDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CSetupDlg)
  17. m_strName = _T("");
  18. m_strServer = _T("");
  19. m_nPort = 0;
  20. //}}AFX_DATA_INIT
  21. }
  22. void CSetupDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CSetupDlg)
  26. DDX_Text(pDX, IDC_NAME, m_strName);
  27. DDX_Text(pDX, IDC_SERVER, m_strServer);
  28. DDX_Text(pDX, IDC_PORT, m_nPort);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CSetupDlg, CDialog)
  32. //{{AFX_MSG_MAP(CSetupDlg)
  33. // NOTE: the ClassWizard will add message map macros here
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CSetupDlg message handlers