home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total C++ 2
/
TOTALCTWO.iso
/
borland
/
cmnctrl.pak
/
PROGCTRL.H
< prev
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
2KB
|
63 lines
// ProgCtrl.h : header file
//
// This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (C) 1992-1995 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these sources for detailed information regarding the
// Microsoft Foundation Classes product.
/////////////////////////////////////////////////////////////////////////////
// CProgCtrlPage dialog
#ifndef INC_PROGCTRL_H
#define INC_PROGCTRL_H
class CProgCtrlPage : public CPropertyPage
{
DECLARE_DYNCREATE(CProgCtrlPage)
// Construction
public:
CProgCtrlPage();
~CProgCtrlPage();
// Dialog Data
//{{AFX_DATA(CProgCtrlPage)
enum { IDD = IDD_PROGCTRL };
CProgressCtrl m_Progress;
int m_iDelta;
UINT m_uiStep;
UINT m_uiRangeFrom;
UINT m_uiPos;
UINT m_uiRangeTo;
//}}AFX_DATA
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CProgCtrlPage)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnInitDialog();
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CProgCtrlPage)
afx_msg void OnProgressStepit();
afx_msg void OnSetpos();
afx_msg void OnProgressSetdelta();
afx_msg void OnFrom();
afx_msg void OnTo();
afx_msg void OnStep();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#endif