SelectTables.h
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:2k
源码类别:

SQL Server

开发平台:

Visual C++

  1. #if !defined(AFX_SELECTTABLES_H__8466BCB3_0FF4_11D2_AEF9_204C4F4F5020__INCLUDED_)
  2. #define AFX_SELECTTABLES_H__8466BCB3_0FF4_11D2_AEF9_204C4F4F5020__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // SelectTables.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSelectTables dialog
  10. class CMainFrame;
  11. class CSelectTables : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CString m_strObjName;
  16. CString m_strType;
  17. CSelectTables(CWnd* pParent = NULL);   // standard constructor
  18. CString m_strSQL;
  19. // Dialog Data
  20. //{{AFX_DATA(CSelectTables)
  21. enum { IDD = IDD_SELECT_TABLES };
  22. CButton m_buttonTextOnly;
  23. CButton m_buttonSystemTables;
  24. CButton m_buttonViews;
  25. CListCtrlEx m_ctrlList;
  26. BOOL m_bTextOnly;
  27. CString m_strSearch;
  28. //}}AFX_DATA
  29. CString m_strTableName;
  30. // Overrides
  31. // ClassWizard generated virtual function overrides
  32. //{{AFX_VIRTUAL(CSelectTables)
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. // Generated message map functions
  39. //{{AFX_MSG(CSelectTables)
  40. virtual BOOL OnInitDialog();
  41. virtual void OnOK();
  42. afx_msg void OnDblclkList1(NMHDR* pNMHDR, LRESULT* pResult);
  43. afx_msg void OnColumnclickList1(NMHDR* pNMHDR, LRESULT* pResult);
  44. afx_msg void OnSystemTables();
  45. afx_msg void OnViews();
  46. afx_msg void OnChangeSearch();
  47. afx_msg void OnTextOnly();
  48. //}}AFX_MSG
  49. DECLARE_MESSAGE_MAP()
  50. private:
  51. CString GetColumnListForTextDataSrc(const CString& sTable);
  52. CString GetColumnList(const CString& sTableName);
  53. bool m_bSort;
  54. BOOL PopulateList();
  55. CMainFrame* m_pFrame;
  56. };
  57. //{{AFX_INSERT_LOCATION}}
  58. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  59. #endif // !defined(AFX_SELECTTABLES_H__8466BCB3_0FF4_11D2_AEF9_204C4F4F5020__INCLUDED_)