| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- #pragma once
- #include "afxcmn.h"
- #include "global.h"
- #include "afxwin.h"
- #include "afxdtctl.h"
- // CRecordDlg dialog
- class CRecordDlg : public CDialogEx
- {
- DECLARE_DYNAMIC(CRecordDlg)
- public:
- CRecordDlg(CWnd* pParent = NULL); // standard constructor
- virtual ~CRecordDlg();
- // Dialog Data
- enum { IDD = IDD_DIALOG_RECORD };
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- DECLARE_MESSAGE_MAP()
- public:
- CListCtrlH m_ListView;
- void redraw();
- CRect m_rect;
- virtual BOOL OnInitDialog();
- afx_msg void OnBnClickedButtonQuery();
- CComboBox CB_PUMP;
- CDateTimeCtrl DT_Begin;
- CDateTimeCtrl DT_End;
- afx_msg void OnBnClickedButtonFilter();
- };
|