PageMailAccount.cpp
资源名称:Netmanag.zip [点击查看]
上传用户:geanq888
上传日期:2007-01-03
资源大小:316k
文件大小:1k
源码类别:
Ftp客户端
开发平台:
Visual C++
- // PageMailAccount.cpp : implementation file
- //
- #include "stdafx.h"
- #include "netmanager.h"
- #include "PageMailAccount.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CPageMailAccount dialog
- CPageMailAccount::CPageMailAccount(CWnd* pParent /*=NULL*/)
- : CDialog(CPageMailAccount::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CPageMailAccount)
- m_sPassword = _T("");
- m_sServer = _T("");
- m_sUsername = _T("");
- m_nPort = 110;
- //}}AFX_DATA_INIT
- }
- void CPageMailAccount::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CPageMailAccount)
- DDX_Text(pDX, IDC_POP3_PASSWORD, m_sPassword);
- DDX_Text(pDX, IDC_POP3_SERVER, m_sServer);
- DDX_Text(pDX, IDC_POP3_USERNAME, m_sUsername);
- DDX_Text(pDX, IDC_PORT, m_nPort);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CPageMailAccount, CDialog)
- //{{AFX_MSG_MAP(CPageMailAccount)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CPageMailAccount message handlers
- void CPageMailAccount::OnOK()
- {
- UpdateData();
- if(m_sServer.IsEmpty() || m_sUsername.IsEmpty() || m_sPassword.IsEmpty())
- AfxMessageBox("Fill out all items");
- else
- CDialog::OnOK();
- }
- /////////////////////////////////////////////////////////////////////////////