关于edit编辑框的一个有关问题,请问了!

关于edit编辑框的一个问题,请教了!!
我现在的edit框已经实现了只能输入数字,汉字和字母都不能输入,但是现在又出现了一个问题,鼠标右击可以把汉字和字母粘贴进去,但是Ctrl+C却不能粘贴,请问大虾,怎么样才能让右击不能粘贴汉字和字母啊??或则干脆就让他不能粘贴任何东西,怎么搞??急,在线等,谢谢了!

------解决方案--------------------
试试看这样
打开资源视图
打开加速键
把里面的ctrl+c等等去掉
这样应该就能ctrl+c了
------解决方案--------------------
我觉得还是有ctrl c更好
前些日子我问过差不多相同的问题,解决方法就是我1楼说得那样,不知道对你适不适用
------解决方案--------------------
重载PreTranslateMessage
BOOL CXXX::PreTranslateMessage(MSG* pMsg)
{
if(pMsg->message == WM_KEYDOWN)
{
char c = ::MapVirtualKey(pMsg->wParam, 2);
//'.','-',数字和方向键除外,其他一律返回
if(!isdigit(c) && c != '.' &&
pMsg->wParam != VK_UP &&
pMsg->wParam != VK_LEFT &&
pMsg->wParam != VK_RIGHT &&
pMsg->wParam != VK_DOWN &&
c != '-')
{
return TRUE;
}
}
}
------解决方案--------------------
重载PreTranslateMessage 
BOOL CXXX::PreTranslateMessage(MSG* pMsg) 

if(pMsg- >message == WM_KEYDOWN) 

char c = ::MapVirtualKey(pMsg- >wParam, 2); 
// '. ', '- ',数字和方向键除外,其他一律返回 
if(!isdigit(c) && c != '. ' && 
pMsg- >wParam != VK_UP && 
pMsg- >wParam != VK_LEFT && 
pMsg- >wParam != VK_RIGHT && 
pMsg- >wParam != VK_DOWN && 
c != '- ') 

return TRUE; 

}
}