Hi,
I've a VSA implementation and I'm able to invoke any method in
my script.
Now I want to hook up event handler in the code from an external
event source.
Normally I use this:
EventInfo eInfo = this.MyForm.GetType().GetEvent("EventName");
Delegate d = Delegate.CreateDelegate(eInfo...
more >>