NumberEdit.cpp
资源名称:Equipment.rar [点击查看]
上传用户:latoyin
上传日期:2017-10-19
资源大小:2882k
文件大小:1k
源码类别:
数据库系统
开发平台:
Visual C++
- // NumberEdit.cpp : implementation file
- //
- #include "stdafx.h"
- #include "Equipment.h"
- #include "NumberEdit.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CNumberEdit
- CNumberEdit::CNumberEdit()
- {
- }
- CNumberEdit::~CNumberEdit()
- {
- }
- BEGIN_MESSAGE_MAP(CNumberEdit, CEdit)
- //{{AFX_MSG_MAP(CNumberEdit)
- ON_WM_CHAR()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CNumberEdit message handlers
- void CNumberEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
- {
- if ((TCHAR)nChar !=8) //8为退格键
- if (((TCHAR)nChar <46|(TCHAR)nChar >57))
- return;
- CEdit::OnChar(nChar, nRepCnt, nFlags);
- }