home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / dynabind / addfield.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.1 KB  |  42 lines

  1. // addfield.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. /////////////////////////////////////////////////////////////////////////////
  15. // CAddField dialog
  16.  
  17. class CAddField : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     CAddField(CWnd* pParent = NULL);    // standard constructor
  22.  
  23. // Dialog Data
  24.     //{{AFX_DATA(CAddField)
  25.     enum { IDD = IDD_ADDFIELD };
  26.     CListBox    m_lbFields;
  27.     CString m_strField;
  28.     //}}AFX_DATA
  29.  
  30.     CSectionSet* m_pSet;
  31.  
  32. // Implementation
  33. protected:
  34.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CAddField)
  38.     virtual BOOL OnInitDialog();
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.