This is a bit difficult to describe (or I'm just terrible with my English), so I'll try to clarify any questions you all may have.
I have a business program that I'm working on, and as stupid as this sounds, I want to pass in a method that will be bound using AddHandler and AddressOf.
Example:
How would I achieve that, and what would be that <SOMETHING>?
I have a business program that I'm working on, and as stupid as this sounds, I want to pass in a method that will be bound using AddHandler and AddressOf.
Example:
Code:
Private Sub SetHandler(iHandler As <SOMETHING>)
AddHandler dgv_results.CellDoubleClick, AddressOf iHandler
End Sub