I'm trying to write a class in Delphi 2007 that uses a ActiveX library. The class will catch an event that the ActiveX library has to expose its own event that adds some information to the ActiveX library's event.
The bottom line is that when I assign my own procedure to the ActiveX library's event that I want to use, I get an error:
E2009 Incompatible types: 'Parameter lists differ'
I'm certain the parameter lists are the same (same number of parameters and same types) so I'm thinking I'm going about it the wrong way.
Any suggestions or can someone post some sample code of what I'm trying to do?