How could i validate a textbox in vb.net, so that it gives error message if i enter anything apart from alphabets
If it's a standard textbox in a WinForms app you can validate every typed character by handling the KeyPressed
event and have the following code in the event handler:
e.Handled = Not Char.IsLetter(e.KeyChar)
The user could still use the mouse to paste something in there though so you might need to handle that as well.
Another option is to handle the Validating
event and if the textbox contains any non alphabetic characters you set e.Cancel
to true.