DlgCloundResult.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //#include "SortListCtrl3.h"
  2. #pragma once
  3. #include "afxcmn.h"
  4. #include "afxwin.h"
  5. // CDlgCloundResult 对话框
  6. class CDlgCloundResult : public CDialog
  7. {
  8. DECLARE_DYNAMIC(CDlgCloundResult)
  9. public:
  10. CDlgCloundResult(CWnd* pParent = NULL); // 标准构造函数
  11. virtual ~CDlgCloundResult();
  12. // 对话框数据
  13. enum { IDD = DLG_CLOUNDRESULT };
  14. protected:
  15. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
  16. DECLARE_MESSAGE_MAP()
  17. public:
  18. INT m_nCloundType;
  19. INT m_nAdd;
  20. INT m_nSelItem;
  21. CSortListCtrl2 *m_pList;
  22. CSortListCtrl3 m_SortList;
  23. CArray<CStringArray, CStringArray> m_AryCloundInfo;
  24. CArray<CStringArray, CStringArray> m_AryCloundResult;
  25. virtual BOOL OnInitDialog();
  26. void InitListCtrl();
  27. void GetCloundResult();
  28. void UpdateDataSortList(IN vector<lyfzLibrary::STOrdJson>& vtOrdJson);
  29. void UpdateDataSortList2(IN vector<lyfzLibrary::STXYJson>& vtXYJson);
  30. void FillUpList(IN CString& strQuery);
  31. afx_msg void OnBnClickedDownresult();
  32. afx_msg void OnBnClickedSynresult();
  33. afx_msg void OnBnClickedExportxls();
  34. afx_msg void OnBnClickedQuery();
  35. CComboBox m_ctrlCombox;
  36. afx_msg void OnBnClickedClean();
  37. protected:
  38. virtual void OnOK();
  39. virtual void OnCancel();
  40. };