LogonDlg.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

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