Move COM application to other machine

I created a COM (dll) in VC# and a client in VC++ using that COM. They worked fine in my machine. The question is when I move them to another machine what files should I move to and how to register the COM?

I have tried to copy client.exe, server.dll, and server.tlb to the new machine then register the dll with regsvr32. It failed with not finding the entry point.

So what can I do about that?

Thank you for any help.
[447 byte] By [GangWU] at [2007-11-19 11:00:00]
# 1 Re: Move COM application to other machine
REGSVR32 the_exe

To uninstall:
Regsvr32 /u the_exe
Ajay Vijay at 2007-11-11 0:09:52 >
# 2 Re: Move COM application to other machine
The error message I got when I register the dll was:

server.dll was loaded, but DllRegisterServer entry point was not found.
GangWU at 2007-11-11 0:10:52 >