I've been able to acces my VB6 ActiveX Exe via a console
application by building a wrapper around my component.
But when I do the same thing using a windows service, I
get an error during execution saying FileNotFoundException
for the ActiveX Exe. This ActiveX exe component is
registered on my computer. Is it possible to do this
with a Windows Service written under .net? If so, what am
I doing wrong. I've added the reference for the
component, then did the following:
Dim oMyObject as MyACTIVEXComponent.clsServer
oMyObject = new MyActiveXComponent.clsServer
Like I said, this works with the Console Application, but
not with the windows service.