DATETIME.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // DateTime.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #if !defined(AFX_DATETIME_H__39010224_ECB6_11D0_8FEA_00A0C9034892__INCLUDED_)
  13. #define AFX_DATETIME_H__39010224_ECB6_11D0_8FEA_00A0C9034892__INCLUDED_
  14. #if _MSC_VER >= 1000
  15. #pragma once
  16. #endif // _MSC_VER >= 1000
  17. /////////////////////////////////////////////////////////////////////////////
  18. // CDateTimePage dialog
  19. class CDateTimePage : public CPropertyPage
  20. {
  21. DECLARE_DYNCREATE(CDateTimePage)
  22. // Construction
  23. public:
  24. void OnDTNotify(NMHDR *pHdr, LRESULT *pRes);
  25. CListBox m_lbNotifyList;
  26. UINT m_nPrevStyle;
  27. void SetCheck(UINT idBtn);
  28. CDateTimeCtrl m_DateTime;
  29. CDateTimePage();
  30. ~CDateTimePage();
  31. // Dialog Data
  32. //{{AFX_DATA(CDateTimePage)
  33. enum { IDD = IDD_DATETIME };
  34. BOOL    m_bAppCanParse;
  35. BOOL    m_bShowNone;
  36. BOOL    m_bUpDown;
  37. //}}AFX_DATA
  38. // Overrides
  39. // ClassWizard generate virtual function overrides
  40. //{{AFX_VIRTUAL(CDateTimePage)
  41. public:
  42. protected:
  43. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. protected:
  47. // Generated message map functions
  48. //{{AFX_MSG(CDateTimePage)
  49. virtual BOOL OnInitDialog();
  50. afx_msg void OnCkupdown();
  51. afx_msg void OnCktimeformat();
  52. afx_msg void OnCkshortdateformat();
  53. afx_msg void OnCkshownone();
  54. afx_msg void OnCklongdateformat();
  55. afx_msg void OnCkappcanparse();
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. //{{AFX_INSERT_LOCATION}}
  60. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  61. #endif // !defined(AFX_DATETIME_H__39010224_ECB6_11D0_8FEA_00A0C9034892__INCLUDED_)