PageMailAccount.cpp
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // PageMailAccount.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "netmanager.h"
  5. #include "PageMailAccount.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPageMailAccount dialog
  13. CPageMailAccount::CPageMailAccount(CWnd* pParent /*=NULL*/)
  14. : CDialog(CPageMailAccount::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CPageMailAccount)
  17. m_sPassword = _T("");
  18. m_sServer = _T("");
  19. m_sUsername = _T("");
  20. m_nPort = 110;
  21. //}}AFX_DATA_INIT
  22. }
  23. void CPageMailAccount::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CPageMailAccount)
  27. DDX_Text(pDX, IDC_POP3_PASSWORD, m_sPassword);
  28. DDX_Text(pDX, IDC_POP3_SERVER, m_sServer);
  29. DDX_Text(pDX, IDC_POP3_USERNAME, m_sUsername);
  30. DDX_Text(pDX, IDC_PORT, m_nPort);
  31. //}}AFX_DATA_MAP
  32. }
  33. BEGIN_MESSAGE_MAP(CPageMailAccount, CDialog)
  34. //{{AFX_MSG_MAP(CPageMailAccount)
  35. //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CPageMailAccount message handlers
  39. void CPageMailAccount::OnOK() 
  40. {
  41.   UpdateData();
  42.   if(m_sServer.IsEmpty() || m_sUsername.IsEmpty() || m_sPassword.IsEmpty())
  43.     AfxMessageBox("Fill out all items");
  44.   else
  45.    CDialog::OnOK();
  46. }
  47. /////////////////////////////////////////////////////////////////////////////