home *** CD-ROM | disk | FTP | other *** search
- // spindemo.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CSpinDemo dialog
-
- class CSpinDemo : public CDialog
- {
- // Construction
- public:
- CSpinDemo(CWnd* pParent = NULL); // standard constructor
-
- // Dialog Data
- //{{AFX_DATA(CSpinDemo)
- enum { IDD = IDD_SPINDEMO };
- CVBEdit* m_pEditDate;
- CString m_szCustomEdit;
- CVBSpin* m_pSpinDate;
- CVBSpin* m_pSpinCustom;
- CVBEdit* m_pEditCustom;
- //}}AFX_DATA
-
- // Implementation
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
-
- // Generated message map functions
- //{{AFX_MSG(CSpinDemo)
- afx_msg void OnDestroy();
- virtual BOOL OnInitDialog();
- afx_msg void OnHelp();
- afx_msg void OnScrollupVbspin4(UINT, int, CWnd*, LPVOID);
- afx_msg void OnScrolldnVbspin4(UINT, int, CWnd*, LPVOID);
- afx_msg void OnScrollupVbspin5(UINT, int, CWnd*, LPVOID);
- afx_msg void OnScrolldnVbspin5(UINT, int, CWnd*, LPVOID);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-