FileTransferDlg.h
上传用户:onsales
上传日期:2010-01-31
资源大小:224k
文件大小:2k
源码类别:

网络编程

开发平台:

Visual C++

  1. // FileTransferDlg.h : header file
  2. //
  3. #if !defined(AFX_FILETRANSFERDLG_H__546A7999_F9EA_49AE_A16C_FC4CF3091348__INCLUDED_)
  4. #define AFX_FILETRANSFERDLG_H__546A7999_F9EA_49AE_A16C_FC4CF3091348__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CFileTransferDlg dialog
  10. class CFileTransferDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CString IPstr;
  15. int sign;
  16. CFile MyFile;
  17. void OnClient();
  18. void OnServer();
  19. CFileTransferDlg(CWnd* pParent = NULL); // standard constructor
  20. // Dialog Data
  21. //{{AFX_DATA(CFileTransferDlg)
  22. enum { IDD = IDD_FILETRANSFER_DIALOG };
  23. CButton m_Button;
  24. CProgressCtrl m_Progress;
  25. CIPAddressCtrl m_IPADDRESS;
  26. CString m_FileName;
  27. CString m_FileSize;
  28. CString m_Name;
  29. //}}AFX_DATA
  30. // ClassWizard generated virtual function overrides
  31. //{{AFX_VIRTUAL(CFileTransferDlg)
  32. protected:
  33. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  34. //}}AFX_VIRTUAL
  35. // Implementation
  36. protected:
  37. HICON m_hIcon;
  38. // Generated message map functions
  39. //{{AFX_MSG(CFileTransferDlg)
  40. virtual BOOL OnInitDialog();
  41. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  42. afx_msg void OnPaint();
  43. afx_msg HCURSOR OnQueryDragIcon();
  44. virtual void OnOK();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_FILETRANSFERDLG_H__546A7999_F9EA_49AE_A16C_FC4CF3091348__INCLUDED_)