With Net, you can use the AddHandler to change the address of functions controls are callling. How would you go about getting the control you're handling though?

Example:

VB Code:
  1. Private Sub MeasureItem(ByVal sender As Object,  ByVal e As _
  2. System.Windows.Forms.MeasureItemEventArgs) Handles mnuOpen.MeasureItem, mnuClose.MeasureItem
  3. 'Split into 2 lines to make life easy (scrolling)
  4. End Sub

If this code was being called for mnuOpen how would I know?