본문 바로가기
VB.net

숫자와 " . " 과 백스페이스만 입력가능하게 하기

by 호야호잇 2018. 11. 9.

        If (Not Char.IsDigit(e.KeyChar) _

                    AndAlso ((e.KeyChar <> Microsoft.VisualBasic.ChrW(46)) AndAlso (e.KeyChar <> ControlChars.Back))) Then

            e.Handled = True

        End If