Allow Only LowerCase Letters In TextBox

'Add 1 TextBox To Your Form.
'Insert the following code to your form:

Private Sub Text1_Change()
old = Text1.SelStart
Text1.Text = LCase(Text1.Text)
Text1.SelStart = old
End Sub

Go Back