Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

102 lines
1.8 KiB

  1. /*++
  2. Copyright (c) 1996 Microsoft Corporation
  3. Module Name:
  4. AccExp.h : header file
  5. CPropertyPage support for User mgmt wizard
  6. File History:
  7. JonY Apr-96 created
  8. --*/
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CStaticDelim window
  11. class CStaticDelim : public CStatic
  12. {
  13. // Construction
  14. public:
  15. CStaticDelim();
  16. CString m_csDateSep;
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. CFont* m_pFont;
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CStaticDelim)
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. public:
  28. virtual ~CStaticDelim();
  29. // Generated message map functions
  30. protected:
  31. //{{AFX_MSG(CStaticDelim)
  32. afx_msg void OnPaint();
  33. //}}AFX_MSG
  34. DECLARE_MESSAGE_MAP()
  35. };
  36. /////////////////////////////////////////////////////////////////////////////
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CAccExp dialog
  39. class CAccExp : public CWizBaseDlg
  40. {
  41. DECLARE_DYNCREATE(CAccExp)
  42. // Construction
  43. public:
  44. CAccExp();
  45. ~CAccExp();
  46. // Dialog Data
  47. //{{AFX_DATA(CAccExp)
  48. enum { IDD = IDD_ACCOUNT_EXP_DIALOG };
  49. CStaticDelim m_cStatic2;
  50. CStaticDelim m_cStatic1;
  51. CSpinButtonCtrl m_sbSpin;
  52. CString m_csDayEdit;
  53. CString m_csYearEdit;
  54. CString m_csMonthEdit;
  55. //}}AFX_DATA
  56. short m_sDayEdit;
  57. short m_sYearEdit;
  58. short m_sMonthEdit;
  59. // Overrides
  60. // ClassWizard generate virtual function overrides
  61. //{{AFX_VIRTUAL(CAccExp)
  62. public:
  63. virtual LRESULT OnWizardNext();
  64. virtual LRESULT OnWizardBack();
  65. protected:
  66. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  67. //}}AFX_VIRTUAL
  68. // Implementation
  69. protected:
  70. // Generated message map functions
  71. //{{AFX_MSG(CAccExp)
  72. virtual BOOL OnInitDialog();
  73. afx_msg void OnSetfocusDayEdit();
  74. afx_msg void OnSetfocusMonthEdit();
  75. afx_msg void OnSetfocusYearEdit();
  76. //}}AFX_MSG
  77. DECLARE_MESSAGE_MAP()
  78. };