TimersDlg.h
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // TimersDlg.h : header file
  2. //
  3. #if !defined(AFX_TIMERSDLG_H__91F75DCE_F6F7_4BCD_AB87_0C649556411A__INCLUDED_)
  4. #define AFX_TIMERSDLG_H__91F75DCE_F6F7_4BCD_AB87_0C649556411A__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CTimersDlg dialog
  10. class CTimersDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. CTimersDlg(CWnd* pParent = NULL); // standard constructor
  15. // Dialog Data
  16. //{{AFX_DATA(CTimersDlg)
  17. enum { IDD = IDD_TIMERS_DIALOG };
  18. CButton m_cStopTime;
  19. CButton m_cStartTime;
  20. CString m_sTime;
  21. CString m_sCount;
  22. int m_iInterval;
  23. //}}AFX_DATA
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CTimersDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. HICON m_hIcon;
  32. // Generated message map functions
  33. //{{AFX_MSG(CTimersDlg)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  36. afx_msg void OnPaint();
  37. afx_msg HCURSOR OnQueryDragIcon();
  38. afx_msg void OnExit();
  39. afx_msg void OnTimer(UINT nIDEvent);
  40. afx_msg void OnChangeInterval();
  41. afx_msg void OnStarttime();
  42. afx_msg void OnStoptimer();
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. private:
  46. int m_iCount;
  47. };
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_TIMERSDLG_H__91F75DCE_F6F7_4BCD_AB87_0C649556411A__INCLUDED_)