How to get events from other assemblies

  • Thread starter Thread starter Mike Walters
  • Start date Start date
M

Mike Walters

How to get events from other assemblies

I have Two Assemblies, one contains my Forms (with controls) the other
is my navigation. My navigation contains my menus and listboxes to
navigation though the system. I want to provide a dynamic help (much
like VS.net), I can't seem to get the event from my onfocus to fire in
my navigation Assembly. I need to know how to receive the onfocus
event with the object clicked to my other Assembly.

Thanks all
Mike Walters
 
Mike,

Mike Walters said:
How to get events from other assemblies

Take a look at the 'AddHandler'/'RemoveHandler' keywords. They can be used
to add a handler to an event at runtime.
 
How do I add a handler from one to another, they are both declared
from different assemblies?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top