Click to See Complete Forum and Search --> : Com Error


Ron Stegall
March 30th, 1999, 08:59 AM
Has any one ever seen this error when trying to register a com dll with

regsvr32


Load Library("comiface.dll")Failed

GetLastError returns 0x0000007e


0x0000007e = The specified module could not be found. This is what error lookup returns


I can load the com on one machine with no problem but when I try it on another

I get the error. I'm using WinNT 4.0

Does the system need to be loaded with something before com will work on

a machine?


Thanks for any help

Dazza
March 30th, 1999, 09:44 AM
Does your COM dll have any dependencies that aren't present on the machine where regsvr32 fails? For example, ATL.DLL???

Ron Stegall
March 30th, 1999, 10:32 AM
I have atl.dll. Is there any more that you know of or where I can find a list. I'm linking to one of my dlls but it is in the path.

Dazza
March 31st, 1999, 01:55 AM
There is a command line program with MSVC called dumpbin that displays information about binary executable files. The /imports switch lists all imported functions and modules. With regards to ATL.DLL, it also needs to be registered on the target machine. Good luck!