PDA

View Full Version : DLL Connections



TheGrimace
20th June 2007, 16:18
I am writing some code that makes use of another program that I encapsulated in a DLL. The problem I am having is that even though I can connect to the signals on the .h file, (the connect statement returns true) the signals are never being raised. Is there any reason why a DLL would not raise a signal when the original program would?

TheGrimace
20th June 2007, 16:39
FIXED!

For those of you with a similar problem:

I had compiled the DLL in release mode and was compiling the other program in debug mode. I am not sure why it made a difference, but it did.