hi. i'm having a problem. when the user clicks on any object in my program i want it's name to appear in a certain textbox. the following code will do it only if i set ALL the objects as handles. this hardly seems feasible. does anyone know of an easier way? here's what i have:

Code:
Private Sub Object_Click (ByVal sender As System.Object, ByVal e As System.EventArgs) Handles LeaveCoverRdo.Click, SnowCompleteRdo.Click, SnowPartiallyRdo.Click, TooHighRdo.Click, PercVisCmb.Click, etc, etc, etc.....

        CustTxt.Text = sender.Text
End Sub