RecordDlg.h 689 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #pragma once
  2. #include "afxcmn.h"
  3. #include "global.h"
  4. #include "afxwin.h"
  5. #include "afxdtctl.h"
  6. // CRecordDlg dialog
  7. class CRecordDlg : public CDialogEx
  8. {
  9. DECLARE_DYNAMIC(CRecordDlg)
  10. public:
  11. CRecordDlg(CWnd* pParent = NULL); // standard constructor
  12. virtual ~CRecordDlg();
  13. // Dialog Data
  14. enum { IDD = IDD_DIALOG_RECORD };
  15. protected:
  16. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  17. DECLARE_MESSAGE_MAP()
  18. public:
  19. CListCtrlH m_ListView;
  20. void redraw();
  21. CRect m_rect;
  22. virtual BOOL OnInitDialog();
  23. afx_msg void OnBnClickedButtonQuery();
  24. CComboBox CB_PUMP;
  25. CDateTimeCtrl DT_Begin;
  26. CDateTimeCtrl DT_End;
  27. afx_msg void OnBnClickedButtonFilter();
  28. };