home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1997 May
/
Pcwk0597.iso
/
delphi
/
prctvb25.lzh
/
VC.ZIP
/
VCVIEW.H
< prev
Wrap
C/C++ Source or Header
|
1996-01-15
|
1KB
|
55 lines
// vcview.h : interface of the CVcView class
//
/////////////////////////////////////////////////////////////////////////////
class CVcView : public CFormView
{
protected: // create from serialization only
CVcView();
DECLARE_DYNCREATE(CVcView)
public:
//{{AFX_DATA(CVcView)
enum { IDD = IDD_VC_FORM };
CEdit m_editv;
CEdit m_editp;
CVBControl* m_percent2;
CVBControl* m_percent1;
//}}AFX_DATA
// Attributes
public:
CVcDoc* GetDocument();
// Operations
public:
// Implementation
public:
virtual ~CVcView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
// Generated message map functions
protected:
//{{AFX_MSG(CVcView)
afx_msg void OnChangeEditP();
afx_msg void OnChangeEditV();
afx_msg void OnChangePrcnt1(UINT, int, CWnd*, LPVOID);
afx_msg void OnChangePrcnt2(UINT, int, CWnd*, LPVOID);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in vcview.cpp
inline CVcDoc* CVcView::GetDocument()
{ return (CVcDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////