JohnCMolyneux
Programmer
Hi.
I've got an ActiveX DLL that I wrote in VB6 which is used on my web server as part of an application. I'm now making a System Tray application that will inform users of relevant events, directing them to relevant web pages on the server. For this, I want to use the DLL that the web server uses.
I've started writing the application using the same ActiveX DLL, but decided against that. I personally don't want to hassle users every time they need to change the DLL - if it's ActiveX, they need to kill any running instances of it, unregister it, copy the new one over the old (or delete then copy), and then register the new one. This is very long-winded and it would be much easier to simply overwrite the existing DLL with a new one - hence, I want to use a Non-ActiveX DLL.
How do I go about making this in VB?
If I try to use the DLL in its current format, I get error messages along the lines of...
"The procedure entry point MyFunctionName could not be located in the dynamic link library MyDLL.dll. "
Can anyone advise me on this?
Thanks.
I've got an ActiveX DLL that I wrote in VB6 which is used on my web server as part of an application. I'm now making a System Tray application that will inform users of relevant events, directing them to relevant web pages on the server. For this, I want to use the DLL that the web server uses.
I've started writing the application using the same ActiveX DLL, but decided against that. I personally don't want to hassle users every time they need to change the DLL - if it's ActiveX, they need to kill any running instances of it, unregister it, copy the new one over the old (or delete then copy), and then register the new one. This is very long-winded and it would be much easier to simply overwrite the existing DLL with a new one - hence, I want to use a Non-ActiveX DLL.
How do I go about making this in VB?
If I try to use the DLL in its current format, I get error messages along the lines of...
"The procedure entry point MyFunctionName could not be located in the dynamic link library MyDLL.dll. "
Can anyone advise me on this?
Thanks.