SortDlg.h
上传用户:jndfzt02
上传日期:2007-04-25
资源大小:391k
文件大小:2k
源码类别:

GIS编程

开发平台:

Visual C++

  1. #if !defined(AFX_SORTDLG_H__F65572D3_1ABE_11D3_B419_32BCD0000000__INCLUDED_)
  2. #define AFX_SORTDLG_H__F65572D3_1ABE_11D3_B419_32BCD0000000__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // SortDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CSortDlg dialog
  10. class Data1Set;
  11. class CDataBaseSet;
  12. class CSortDlg : public CDialog
  13. {
  14. // Construction
  15. public:
  16. CSortDlg(CDataBaseSet* pSet,CWnd* pParent = NULL);   // standard constructor
  17. public:
  18. void MakeStr();
  19. int BreakSortStr(CString m_str);
  20. CString m_strSort;
  21. protected:
  22. CDataBaseSet* m_pSet;
  23. short  m_NumbSort; //排序字段的数目
  24. CODBCFieldInfo pFieldInfo[200];
  25. short m_NumbField;
  26. CString strSort[10];
  27. BOOL b_Sort[10];
  28. CListBox *plist1;
  29. CComboBox *pcom1;
  30. // Dialog Data
  31. //{{AFX_DATA(CSortDlg)
  32. enum { IDD = IDD_SORT };
  33. // NOTE: the ClassWizard will add data members here
  34. //}}AFX_DATA
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CSortDlg)
  38. protected:
  39. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40. //}}AFX_VIRTUAL
  41. // Implementation
  42. protected:
  43. // Generated message map functions
  44. //{{AFX_MSG(CSortDlg)
  45. virtual BOOL OnInitDialog();
  46. afx_msg void OnSortAdd();
  47. afx_msg void OnSortDelete();
  48. afx_msg void OnSortInsert();
  49. afx_msg void OnSortModify();
  50. virtual void OnOK();
  51. afx_msg void OnSelchangeList1();
  52. //}}AFX_MSG
  53. DECLARE_MESSAGE_MAP()
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_SORTDLG_H__F65572D3_1ABE_11D3_B419_32BCD0000000__INCLUDED_)