Allow only integers in TextBoxes

后端 未结 6 1369
情书的邮戳
情书的邮戳 2021-01-22 12:45

I\'m having a problem with checking textboxes and making sure there\'s only integers in them.

So far I\'m able to confirm that there\'s text in the textboxes, but checki

6条回答
  •  暖寄归人
    2021-01-22 13:38

    If you don't want to permit ANYTHING except numbers into the editbox, hook into keyboard events, check for characters that aren't digits and cancel them out.

    When you sort out what events are needed on one textbox, just reuse same event on others, since you don't have to copy events around.

提交回复
热议问题