BCB TEdit组件限制输入数字

源:http://hi.baidu.com/jianboth/blog/item/ffe6d004b6d17703728b65a4.html

 

方法1:

     实现TEdit组件的OnKeyPress()事件里面:

    实现的内容如下:

 

  /*限制只能输入数字*/

    if(!(((Key >= '0') && (Key <= '9')) || (Key == VK_BACK) || (Key   == VK_DELETE)))

    {

      Key = 0;

    }    

 

原来很简单,就是判断用户输入的是否是0-9和退格键,Delete键,这样就可以实现让TEdit只能输入数字。

 

方法2:

      使用Windows函数,可以Show()里面对TEdit进行设置,设置的方法也很简单,设置内容如下:

SetWindowLong(edt_XX->Handle,GWL_STYLE,GetWindowLong(edt_XX->Handle,GWL_STYLE) + ES_NUMBER);

你可能感兴趣的:(windows,delete)