// MyLoginDlg.cpp : implementation file // #include "stdafx.h" #include "myFtpClient.h" #include "MyLoginDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CMyLoginDlg dialog CMyLoginDlg::CMyLoginDlg(CWnd* pParent /*=NULL*/) : CDialog(CMyLoginDlg::IDD, pParent) { //{{AFX_DATA_INIT(CMyLoginDlg) m_key = _T(""); m_port = 0; m_user = _T(""); //}}AFX_DATA_INIT } void CMyLoginDlg::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CMyLoginDlg) DDX_Control(pDX, IDC_IP, m_ip); DDX_Text(pDX, IDC_KEY, m_key); DDX_Text(pDX, IDC_PORT, m_port); DDX_Text(pDX, IDC_USER, m_user); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CMyLoginDlg, CDialog) //{{AFX_MSG_MAP(CMyLoginDlg) // NOTE: the ClassWizard will add message map macros here //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CMyLoginDlg message handlers