Hi,

I have the following problem...

I have written a VB program that uses a self written DLL.
When I launch the application from my own computer I have no problem.
But when I launch the same application from the same network drive but from a different computer
I get the error 'File not Found enmvbapi.dll'.

This is very strange because the only place the DLL is located is the directory from the EXE.
The DLL has not been registered on my system. I searched my registry for any reference regarding my DLL but I did not find it.

My VB declaration for my DLL is as follows :


Declare Function VBENMAttach Lib "enmvbapi.dll" (byval InUserId as string, byval InPassword as string, byval FuncId as string) as Integer




Am I missing somehting here... Should I doe additional things to make a DLL known to a computer.

Tom