DLGSQL.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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. // CDlgSQL dialog
  15. class CDlgSQL : public CDialog
  16. {
  17. // Construction
  18. public:
  19. BOOL m_bEditMode;
  20. CDlgSQL(CWnd* pParent = NULL);   // standard constructor
  21. // Dialog Data
  22. //{{AFX_DATA(CDlgSQL)
  23. enum { IDD = IDD_DLGSQL };
  24. CString m_strSQL;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CDlgSQL)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CDlgSQL)
  36. // NOTE: the ClassWizard will add member functions here
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };