hi there

Im looking to keep focus in my first text box even after i have selected on different options.

basically i have 10 command buttons giving different info into the txtNamebox.Text

VB Code:
  1. Private Sub cmdIcon_click(Index As Integer)
  2.  
  3.     Select Case Index
  4.         Case 0
  5.             txtNamebox.Text = txtNamebox.Text + Format$("1")
  6.         Case 1
  7.             txtNamebox.Text = txtNamebox.Text + Format$("2")

But after selecting one of them command buttons , i have to manually select the first text box again to type into.
.Please help/


I have the first text box as tab index 0 and the rest disabled but that doesnt work