No response from regsvr32

I've developed a component (.dll file) on my desktop computer using VC++ 6 running Windows XP SP1. When I run regsvr32 on the the desktop computer, the .dll registers and I'm able to access the component from a client program.

When I attempt to register the same component on a laptop computer (also running Windows XP SP1), regsvr32 runs quietly (not showing a "DllRegisterServer in file.dll succeeded" message or any other message), the .dll doesn't register and I'm not able to access the component from a client program.

Does anyone know why this could happen?

If I run the regsvr32 command in a batch file (on the laptop), %ERRORLEVEL% gets set to 3. Anyone know where I could find out what that might mean?

-Rob
[775 byte] By [captain12pack] at [2007-11-19 0:37:36]
# 1 Re: No response from regsvr32
Here's what it was - MFC Release DLLs were on the laptop, but not the Debug DLLs. regsvr32 registers a Release version of the .dll properly.
captain12pack at 2007-11-10 3:39:35 >