I want to find the a the name of a specific sub that I only know it's handles.
example:
Function GetSub(Handle As EventHandler) As Object
'Help!!!
End Function
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
TextBox1.Text = "Hello world!"
End Sub
is there a way? Thanks in advance