I need to pass the address of a function to the contructor of a class when I
create an instance of it so that in the new instance I can dynamically
hookup a handler by doing the following:
AddHandler ButtonNew.Click , AddressOf My_Passed_Funct ion
I thought I could use a delegate but that doesn't seem to be working. Am I
on the right track?
create an instance of it so that in the new instance I can dynamically
hookup a handler by doing the following:
AddHandler ButtonNew.Click , AddressOf My_Passed_Funct ion
I thought I could use a delegate but that doesn't seem to be working. Am I
on the right track?
Comment