Im trying to find a beginner friendly yet effective way to refrences textboxes in a vb form as an array and then loop over them checking for different conditions. Instead of having to go
If IsNumeric(firstNameTxt.Text) Then
MessageBox("First name can only contain letters")
End If
if IsNumeric(lastNameTxt.Text)
:
:
Im trying to do form validation and want to loop over all textboxes in my form checking that they only contain letter