J John Fuller Sep 21, 2006 #1 Are there events that trigger when the focus Enters/Exits a Textbox? If so, what are they? Thanks, John
Are there events that trigger when the focus Enters/Exits a Textbox? If so, what are they? Thanks, John
D Die_Another_Day Sep 21, 2006 #2 Private Sub TextBox1_Enter() End Sub Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean) End Sub HTH Charles
Private Sub TextBox1_Enter() End Sub Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean) End Sub HTH Charles
J John Fuller Sep 21, 2006 #3 I guess I should have known it would be that simple. *Smacks Self* Thanks