Progress64 error with IwodHttpNotify - WeOnlyDo Discussion board

Progress64 error with IwodHttpNotify (wodHttpDLX)

by Eric, Monday, March 16, 2009, 21:32 (5526 days ago)

Hello,

I am trying the sample code for HttpDLX in VB6. I am trying to implement IwodHttpNotify with this module and am running into this error:

----------------------------
Compile error:

Object module needs to implement 'Progress64' for interface 'IwodHttpNotify'
----------------------------

I have followed the directions to do this that were provided. As far as I can tell, my VB code ought to be fine:
---------------
Option Explicit
Dim PostControl2 As wodHttpDLXCom
' because we implement notification interface
Implements IwodHttpNotify '<-----this is where it chokes
----------------

The sample project that uses IwodHttpNotify works great. I can't tell what the difference is... any help would be greatly appreciated!

Thanks,
Eric

Re: Progress64 error with IwodHttpNotify

by woddrazen, Monday, March 16, 2009, 21:37 (5526 days ago) @ Eric

Hi Eric,


Please add all IwodHttpDLXNotify Methods (Events). Even if you don't use it, you should add it to your code when using fast notification interfaces.

More help for Fast notifications interface you can find here:
http://www.weonlydo.com/HttpDLX/Help/Notifications.html

Let us know how it goes.


Regards,
Drazen

Re: Progress64 error with IwodHttpNotify

by Eric, Monday, March 16, 2009, 21:43 (5526 days ago) @ woddrazen

Thanks for the tip! I went back through, and sure enough, I had a type-o in one of my function declarations.