Hi everyone,
I am looking for a way to select text in a text box without having to put this

Text1.SelStart = 0
Text1.SelLength = Len(Text1)

into every textbox focus event. I have over a one hundred textboxes. That is a lot. Sure I could put it in a public sub and then call that in every focus event but still the same inherent problem - - 100+ textboxes. whehh. I am looking instead for something that only has to be declared once when the form loads. I am new to this. I guess it would be some kind of API call?
Any help or direction would be great. Thanks

Harold