I am currently disabling a user from typing anything but letters into a text box using this code:
However how can i change it so it also allows backspace, enter and spacebar as well as letters?
Any help would be really appreciated :D
Code:
If Not Char.IsLetter(e.KeyChar) Then e.Handled = True And MsgBox("Please enter letters only")Any help would be really appreciated :D