S
SMS
Well, it SOUNDS simple...
Userform with three controls, TextBox1, TextBox2, TextBox3
For TextBox2 ONLY, I have this code:
Private Sub TextBox2_afterupdate()
counter = counter +1
TextBox2.Text = ""
TextBox2.SetFocus
End Sub
This is supposed to increment a counter, clear the textbox... and here
is the pisser: SET THE FOCUS BACK TO TEXTBOX2.
This appears to be impossible... I have spent hours on it.
Please help!
Again, the sole goal here is to get the same text box to have focus
when the event is finished.
Thank you SO much...
Userform with three controls, TextBox1, TextBox2, TextBox3
For TextBox2 ONLY, I have this code:
Private Sub TextBox2_afterupdate()
counter = counter +1
TextBox2.Text = ""
TextBox2.SetFocus
End Sub
This is supposed to increment a counter, clear the textbox... and here
is the pisser: SET THE FOCUS BACK TO TEXTBOX2.
This appears to be impossible... I have spent hours on it.
Please help!
Again, the sole goal here is to get the same text box to have focus
when the event is finished.
Thank you SO much...