I want to add an even to the TextBox for when it has focus. I know I could do this with a simple textbox1.Focus and check the bool value... but I don\'
TextBox
textbox1.Focus
You're looking for the GotFocus event. There is also a LostFocus event.
textBox1.GotFocus += textBox1_GotFocus;