You can change the data in a textbox without it getting focus quite easily.

VB Code:
  1. Text1.Text = Text1.Text & " adding some text"

if you put that in another sub or function or whatever, it wont fire the gotfocus event of the textbox.

Hope it helps