FTPDLG.H
上传用户:szlsqc
上传日期:2015-05-05
资源大小:149k
文件大小:2k
源码类别:

Ftp服务器

开发平台:

C/C++

  1. // FtpDlg.h : header file
  2. //
  3. #if !defined(AFX_FTPDLG_H__5786A2AC_3D7B_11D4_8C39_0000E839EC5E__INCLUDED_)
  4. #define AFX_FTPDLG_H__5786A2AC_3D7B_11D4_8C39_0000E839EC5E__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CFtpDlg dialog
  10. class CFtpDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CFtpDlg(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CFtpDlg)
  17. enum { IDD = IDD_FTPFILE_DIALOG };
  18. CButton m_BtnQuery;
  19. CButton m_BtnUpLoad;
  20. CStatic m_StaPwd;
  21. CStatic m_StaName;
  22. CStatic m_StaFtp;
  23. CEdit m_EditPwd;
  24. CEdit m_EditName;
  25. CEdit m_EditFtp;
  26. CButton m_BtnDownLoad;
  27. CListBox m_ListFile;
  28. CString m_strFtpSite;
  29. CString m_strName;
  30. CString m_strPwd;
  31. //}}AFX_DATA
  32. // ClassWizard generated virtual function overrides
  33. //{{AFX_VIRTUAL(CFtpDlg)
  34. protected:
  35. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  36. //}}AFX_VIRTUAL
  37. // Implementation
  38. protected:
  39. HICON m_hIcon;
  40. // Generated message map functions
  41. //{{AFX_MSG(CFtpDlg)
  42. virtual BOOL OnInitDialog();
  43. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  44. afx_msg void OnPaint();
  45. afx_msg HCURSOR OnQueryDragIcon();
  46. afx_msg void OnQuery();
  47. afx_msg void OnSelchangeListFile();
  48. afx_msg void OnDownload();
  49. afx_msg void OnUpload();
  50. afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
  51. //}}AFX_MSG
  52. DECLARE_MESSAGE_MAP()
  53. private:
  54. BOOL PutFile(CString strSourceName,CString strDestName);
  55. BOOL GetFile(CString strSourceName,CString strDestName);
  56. void ListContent();
  57. };
  58. //{{AFX_INSERT_LOCATION}}
  59. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  60. #endif // !defined(AFX_FTPDLG_H__5786A2AC_3D7B_11D4_8C39_0000E839EC5E__INCLUDED_)