ConnectDlg.cpp
上传用户:job1860
上传日期:2021-12-04
资源大小:1510k
文件大小:1k
源码类别:

Ftp客户端

开发平台:

Visual C++

  1. // ConnectDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyFtp.h"
  5. #include "ConnectDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CConnectDlg dialog
  13. CConnectDlg::CConnectDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CConnectDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CConnectDlg)
  17. m_FtpWebSite = _T("127.0.0.1");
  18. m_UserName = _T("anonymous");
  19. m_UserPwd = _T("");
  20. //}}AFX_DATA_INIT
  21. }
  22. void CConnectDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CConnectDlg)
  26. DDX_Text(pDX, IDC_EDIT1, m_FtpWebSite);
  27. DDX_Text(pDX, IDC_EDIT2, m_UserName);
  28. DDX_Text(pDX, IDC_EDIT3, m_UserPwd);
  29. //}}AFX_DATA_MAP
  30. }
  31. BEGIN_MESSAGE_MAP(CConnectDlg, CDialog)
  32. //{{AFX_MSG_MAP(CConnectDlg)
  33. ON_BN_CLICKED(IDOK, OnConnect)
  34. //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36. /////////////////////////////////////////////////////////////////////////////
  37. // CConnectDlg message handlers
  38. void CConnectDlg::OnConnect() 
  39. {
  40. // TODO: Add your control notification handler code here
  41. UpdateData();
  42. CDialog::OnOK();
  43. }