Hi,
I have a form with 1 TreeView and a TextBox with the following code:
Private Sub TreeView1_AfterSelect(ByVal sender As Object, ByVal e As System.Windows.Forms.TreeViewEventArgs) Handles TreeView1.AfterSelect
TextBox1.Select()
End Sub
The code "TextBox1.Select" didn't move "focus" to TextBox1 as I figured out.
How can I do?
PhanvanKy