home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 14_Cabinet / DLGSQL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-18  |  1.1 KB  |  47 lines

  1. // DlgSQL.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes and
  4. // Templates (MFC&T).
  5. // Copyright (C) 1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // MFC&T Reference and related electronic documentation provided
  10. // with the library.  See these sources for detailed information
  11. // regarding the MFC&T product.
  12. //
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CDlgSQL dialog
  16.  
  17. class CDlgSQL : public CDialog
  18. {
  19. // Construction
  20. public:
  21.     BOOL m_bEditMode;
  22.     CDlgSQL(CWnd* pParent = NULL);   // standard constructor
  23.  
  24. // Dialog Data
  25.     //{{AFX_DATA(CDlgSQL)
  26.     enum { IDD = IDD_DLGSQL };
  27.     CString m_strSQL;
  28.     //}}AFX_DATA
  29.  
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CDlgSQL)
  34.     protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39. protected:
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CDlgSQL)
  43.         // NOTE: the ClassWizard will add member functions here
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.