12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- //{{AFX_INCLUDES()
- #include "DataGrid.h"
- #include "DataComboBox.h"
- #include "BtnST.h"
- #include "afxdtctl.h"
- #include "afxwin.h"
- //}}AFX_INCLUDES
- #if !defined(AFX_DLGSYSTEMLOG_H__328FA931_CC67_426C_B3D7_FE99C1A6324E__INCLUDED_)
- #define AFX_DLGSYSTEMLOG_H__328FA931_CC67_426C_B3D7_FE99C1A6324E__INCLUDED_
- #include "resource.h"
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // AnalogDlg.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // CDlgSystemLog dialog
- class CDlgSystemLog : public CDialog
- {
- // Construction
- public:
- void SetVal(int row,int col,CString str);
- CDlgSystemLog(CWnd* pParent = NULL); // standard constructor
- // Dialog Data
- //{{AFX_DATA(CDlgSystemLog)
- enum { IDD = IDD_DLG_SYSTEM_LOG };
- CDataGrid m_ctrlGridRec;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CDlgSystemLog)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- public:
- CButtonST m_btnQuery, m_btnExport, m_btnExit,m_btnDel;
- private:
- void SetFields();
- void Requery();
- void RowSelect();
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(CDlgSystemLog)
- virtual void OnOK();
- virtual void OnCancel();
- virtual BOOL OnInitDialog();
- DECLARE_EVENTSINK_MAP()
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- public:
- protected:
- virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
- public:
- CDateTimeCtrl m_ctrlStartDate;
- CDateTimeCtrl m_ctrlEndDate;
- afx_msg void OnBnClickedBtnClose();
- afx_msg void OnBnClickedBtnQuery();
- afx_msg void OnBnClickedBtnDel();
- afx_msg void OnBnClickedBtnExport();
- CComboBox m_ctrlDevName;
- CEdit m_ctrlVarDesc;
- afx_msg void OnBnClickedBtnClose2();
- afx_msg void OnBnClickedBtnClose3();
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_ANALOGDLG_H__328FA931_CC67_426C_B3D7_FE99C1A6324E__INCLUDED_)
|