koshy
New member
Any one please help me with the Regular Expressions which allow Alphabets only, i tried this [^a-zA-Z] but it's allowing Numeric also.
Case INPUTTYPES_SETTINGS.AlphabetsOnly
Case INPUTTYPES_SETTINGS.AlphabetsOnly
_RegularExp = New System.Text.RegularExpressions.Regex("[^a-zA-Z]")
Case KTB_INPUTTYPES_SETTINGS.AlphaNumericIf (_RegularExp.IsMatch(_TxtBox.Text) = False) Then
Call PopupBalloon("Alphabets Expected..!!", ToolTipIcon.Error)
End If