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:
Private Sub MeasureItem(ByVal sender As Object, ByVal e As _ System.Windows.Forms.MeasureItemEventArgs) Handles mnuOpen.MeasureItem, mnuClose.MeasureItem 'Split into 2 lines to make life easy (scrolling) End Sub
If this code was being called for mnuOpen how would I know?
