home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / VISUAL_B / FERRAMEN / VBXSTD12 / FLISTDEM.H_ / FLISTDEM.H
Encoding:
C/C++ Source or Header  |  1994-08-23  |  860 b   |  36 lines

  1. // flistdem.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CFlistDemo dialog
  6.  
  7. class CFlistDemo : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CFlistDemo(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CFlistDemo)
  15.     enum { IDD = IDD_FLISTDEMO };
  16.     CString    m_szDir;
  17.     CString    m_szFile;
  18.     CVBFList*    m_pDirList;
  19.     CVBFList*    m_pFilesList;
  20.     //}}AFX_DATA
  21.  
  22. // Implementation
  23. protected:
  24.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25.  
  26.     // Generated message map functions
  27.     //{{AFX_MSG(CFlistDemo)
  28.     afx_msg void OnDestroy();
  29.     virtual BOOL OnInitDialog();
  30.     afx_msg void OnHelp();
  31.     afx_msg void OnDblclickVbflist1(UINT, int, CWnd*, LPVOID);
  32.     afx_msg void OnSelchangeVbflist2(UINT, int, CWnd*, LPVOID);
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.