GuiFDir.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #if !defined(AFX_FDIR_H__25E4B82F_FB23_45B2_B475_91668BFF681B__INCLUDED_)
  14. #define AFX_FDIR_H__25E4B82F_FB23_45B2_B475_91668BFF681B__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. // FDir.h : header file
  19. //
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CFDir dialog
  22. #include "GuiLib.h"
  23. class  CFWnd: public CWnd
  24. {
  25. public:
  26. //***************************
  27. void OnOpen();
  28. void OnReSize();
  29. DECLARE_MESSAGE_MAP()
  30. };
  31. class GUILIBDLLEXPORT CGuiFDir : public CFileDialog
  32. {
  33. DECLARE_DYNAMIC(CGuiFDir)
  34. public:
  35. //**************************************
  36. CGuiFDir(CWnd* parent);
  37. void OnInitDone();
  38. void OnFolderChange();
  39. //**************************************
  40. public:
  41. CWnd* cw;
  42. CString m_GetPath;
  43. CEdit m_cedit;
  44. CFWnd cfwn;
  45. protected:
  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_FDIR_H__25E4B82F_FB23_45B2_B475_91668BFF681B__INCLUDED_)