Say we had something like
Private Sub ClickObject(ByVal sender As System.Object, ByVal e as System.Eventargs)
Handles Object1.click, Object2.click, Object3.click
Which takes the event after the 'Handles' and sends them to the function.
Is there an equivalent for this in Delphi, and how would I do it?