Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can a dll receive events?

Status
Not open for further replies.

REWT

Programmer
Aug 10, 2001
12
US
I needed to know if a DLL can respond to events. I haven't heard either way if it is a possible or not. I am guessing that they cannot. That they are basic packages of functions and whatnot. Thanks in advance.

REWT
 
You're on the right track. The DLL is not going to be able to do event handling itself. However, if the code you want to use for event handling is in a DLL, you could write a trivial piece of code to catch the events, and call the DLL code.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top