All events are tied to the objects that own that event. Every control is its own object with its own events (and properties and methods), so do to what you want to do would require sub-classing all of the controls, trap the event message, and based on the event message, either pass it back to the control for normal handling, or throw it away and raise the corresponding event for another object. Although doable, it would in no way be worth the effort.
A far better approach is to have the normal event handlers set up, and from within the event handler, call the common subroutine.
Sub Text1_Click
ExecGlobalClickRoutine
End Sub
Sub Text2_Click
ExecGlobalClickRoutine
End sub
and so forth. Then write your ExecGlobalClick routine.
Public Sub ExecGlobalClickRoutine
....
End Sub
Good Luck
--------------
As a circle of light increases so does the circumference of darkness around it. - Albert Einstein