NumericEdit.h
资源名称:pciexp.zip [点击查看]
上传用户:zhuqijet
上传日期:2007-01-04
资源大小:138k
文件大小:1k
源码类别:
驱动编程
开发平台:
Visual C++
- // NumericEdit.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // NumericEdit window
- class CNumericEdit : public CEdit
- {
- // Construction
- public:
- CNumericEdit();
- CNumericEdit(LPCTSTR fmt);
- void SetWindowText(int val, LPCTSTR fmt = NULL);
- int GetWindowInt();
- void Blank();
- // Attributes
- public:
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CNumericEdit)
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CNumericEdit();
- // Generated message map functions
- protected:
- LPCTSTR deffmt;
- //{{AFX_MSG(CNumericEdit)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- /////////////////////////////////////////////////////////////////////////////