Good question. I was assuming that it found the file but couldn’t locate the function.
I’m running the agent manually so does that mean that the .dll file needs to be local or on the server? I definitely have it installed locally in that location.
It was written in VB so there are a .cls, .vbp, .vbw, .exp and .lib in the same directory. The function is found in the .cls file and I have no idea what is in the .dll file.
Subject: COM vs. exported functions in DLLs in VB…
Out of the box, you cannot easily just export a function in a .dll file created by VB. There are ways to do it, but they are cumbersome and not really worth the trouble. VB only supports COM .dlls, in which case you need to use CreateObject() to instantiate a COM object based on your .dll’s ProgID name, and then you can call the methods defined in your class…