DLGFILE.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. #if !defined(AFX_DLGFILE_H__7900AD64_A65E_11D1_8316_00A0C91BC942__INCLUDED_)
  2. #define AFX_DLGFILE_H__7900AD64_A65E_11D1_8316_00A0C91BC942__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // DlgFile.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CDlgFile dialog
  10. class CDlgFile : public CDialog
  11. {
  12. // Construction
  13. public:
  14. void SetFile(LPCTSTR szFile);
  15. CString& GetFile();
  16. CDlgFile(CWnd* pParent = NULL);   // standard constructor
  17. // Dialog Data
  18. //{{AFX_DATA(CDlgFile)
  19. enum { IDD = IDD_DIALOGFILE };
  20. CEdit m_ctlEditFile;
  21. CString m_strFile;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CDlgFile)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CDlgFile)
  33. virtual void OnOK();
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnButtonbrowse();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. };
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_DLGFILE_H__7900AD64_A65E_11D1_8316_00A0C91BC942__INCLUDED_)