home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / daotable / listctrl.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  47 lines

  1. // FieldListCtrl.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CFieldListCtrl window
  15.  
  16. class CFieldListCtrl : public CListCtrl
  17. {
  18. // Construction
  19. public:
  20.     CFieldListCtrl();
  21.  
  22. // Attributes
  23. public:
  24.  
  25. // Operations
  26. public:
  27.  
  28. // Overrides
  29.     // ClassWizard generated virtual function overrides
  30.     //{{AFX_VIRTUAL(CFieldListCtrl)
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. public:
  35.     virtual ~CFieldListCtrl();
  36.  
  37.     // Generated message map functions
  38. protected:
  39.     //{{AFX_MSG(CFieldListCtrl)
  40.     afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  41.     //}}AFX_MSG
  42.  
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47.