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

Windows编程

开发平台:

Visual C++

  1. // DAOTDlg.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. // CDAOTableDlg dialog
  14. class CDAOTableDlg : public CDialog
  15. {
  16. // Construction
  17. public:
  18. void createNewDatabase();
  19. void enableControlsForOpenDatabase(BOOL bEnable = TRUE);
  20. CDaoDatabase * m_pDatabase;
  21. CDAOTableDlg(CWnd* pParent = NULL); // standard constructor
  22. // Dialog Data
  23. //{{AFX_DATA(CDAOTableDlg)
  24. enum { IDD = IDD_DAOTABLE_DIALOG };
  25. CComboBox   m_QueryNameComboControl;
  26. CComboBox   m_TableNameComboControl;
  27. CString m_strDatabaseName;
  28. CString m_strTableName;
  29. CString m_strQueryName;
  30. //}}AFX_DATA
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CDAOTableDlg)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. HICON m_hIcon;
  39. // Generated message map functions
  40. //{{AFX_MSG(CDAOTableDlg)
  41. virtual BOOL OnInitDialog();
  42. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  43. afx_msg void OnDestroy();
  44. afx_msg void OnPaint();
  45. afx_msg HCURSOR OnQueryDragIcon();
  46. afx_msg void OnButtonConnect();
  47. virtual void OnCancel();
  48. virtual void OnOK();
  49. afx_msg void OnButtonTableFields();
  50. afx_msg void OnButtonTableIndexes();
  51. afx_msg void OnButtonQueryDefinition();
  52. afx_msg void OnDropdownComboTableName();
  53. afx_msg void OnDropdownComboQueryName();
  54. afx_msg void OnButtonDeleteTable();
  55. //}}AFX_MSG
  56. DECLARE_MESSAGE_MAP()
  57. };