Using VB2012 ...

Rather than have a single subroutine for each textbox control getting focus on a form, I grouped them all like this:
Code:
Private Sub txtAddress_GotFocus(sender As Object, e As EventArgs) Handles _
txtAddress.GotFocus, txtPhone.GotFocus, txtVendor.GotFocus, _
txtCity.GotFocus, txtZip.GotFocus
       
    End Sub
From there I can do various things like change the backcolor/forecolor but considering they are all textboxes I would like to select all the text when they get focus ... but I can't figure out the syntax to do that. I would think I have to test for a textbox and then select all if true ... but how?

Thanks,
Ken