Not far into programming and just joined this forum of mighty company so this is a silly question, but what is the best way to clear textboxes in VB.Net and what is the diff
If u want to Selected text clear then using to this code i will make by my self ;)
If e.KeyCode = Keys.Delete Then TextBox1.SelectedText = "" End If
thats it
Just use:TextBox1.Clear() It will work fine.
TextBox1.Clear()