Thread
:
buttons and boxes in userform
View Single Post
#
2
Posted to microsoft.public.excel.misc
Anita
Posts: n/a
buttons and boxes in userform
Hi Larry,
Try something like this:
Private Sub TextBox1_Change()
TextBox2.SetFocus
End Sub
For any change to the text in textbox1, textbox2 gets the focus.
Reply With Quote