标题:对话框字符过滤问题
只看楼主
mcuzy
Rank: 2
等 级:论坛游民
帖 子:8
专家分:21
注 册:2011-4-7
结帖率:100%
 问题点数:0 回复次数:2 
对话框字符过滤问题
IDC_EDIT1下字符过滤,仅仅16进制允许,

如何在编辑框里限制输入只能是16进制数字?
从网上找了点答案,具体是
从CEdit派生一个类,添加WM_CHAR消息映射。
void CMyHexEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags)
{
if ( (nChar >= '0' && nChar <= '9') ||
(nChar >= 'a' && nChar <= 'f') ||
(nChar >= 'A' && nChar <= 'F') ||
nChar == VK_BACK ||
nChar == VK_DELETE) //msdn的virtual key
{
CEdit::OnChar(nChar, nRepCnt, nFlags);
}
}

但是具体如何调用呢,
void CToolDlg::OnChangeEdit1()
{
    // TODO: If this is a RICHEDIT control, the control will not
    // send this notification unless you override the CDialog::OnInitDialog()
    // function and call CRichEditCtrl().SetEventMask()
    // with the ENM_CHANGE flag ORed into the mask.
   
    // TODO: Add your control notification handler code here
//   这类如何调用才能让IDC_EDIT1 有这个效果,谢谢

}

搜索更多相关主题的帖子: 答案 msdn 对话框 
2011-05-13 10:00
mcuzy
Rank: 2
等 级:论坛游民
帖 子:8
专家分:21
注 册:2011-4-7
得分:0 
初学VC,请有解决过这个的朋友帮忙下。
2011-05-13 10:21
mcuzy
Rank: 2
等 级:论坛游民
帖 子:8
专家分:21
注 册:2011-4-7
得分:0 
人气有点低呀,搜索好多资料,这个问题还是经典问题呢。期待ING
2011-05-13 16:52



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-339680-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.067939 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved