Private Sub TextBox1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles TextBox1.KeyPress
If Not Char.IsLetterOrDigit(e.KeyChar) Then
e.Handled = True
End If
End Sub
TnTinMN 418 Practically a Master Poster
taskman commented: Thanks for the clarification & link +0
TnTinMN 418 Practically a Master Poster
TnTinMN 418 Practically a Master Poster