registering .net activex control??

I can register my .net activex control on my development machine with Visual Studio .Net installed using:

regsvr32 c:\file path\actxobj.ocx

However, if try to register the actx control on a system without Visual Studio .Net regsvr32 c:\file path\actxobj.ocx, I get a LoadLibrary error. What is required to register a .net activex control?

I have the MS .NET Framework installed.

Thx.
[422 byte] By [mamo] at [2007-11-18 3:13:23]
# 1 Re: registering .net activex control??
What library is LoadLibrary complaining about?
chaimnus at 2007-11-9 12:01:02 >
# 2 Re: registering .net activex control??
I have resolved the issue.

Using Dependency Walker, I found that mfcxx.dll, atlxx.dll were not on the target machine... I just copied the dlls from my dev machine to the test machine(note that MS does not recommend this). After doing this, I was able to register my activex control.
mamo at 2007-11-9 12:02:02 >
# 3 Re: registering .net activex control??
I have been getting this same LoadLibrary() error. It cannot find a specific file.
I am using VC++ 6.0 running on 2k.

The weird thing is that my boss can register the AX control on his station, but he is using XP. I have tried to register the control on other station using both 2k and XP and it does not register. Any help will be appreciated :)
Robo_Bender at 2007-11-9 12:03:09 >
# 4 Re: registering .net activex control??
In addition to my last post, I have read all the other posts that I can on this subject and I have attempted them and failed miserably!

I have isolated the problem to this:
I can register the control With all the methods and Events I have created (However there are no guts to them), And as soon as I make a call to access a certain .LIB file suddenly I cannot register the Control; The LoadLibrary Error "Cannot find module" appears.
Thanks
Robo_Bender at 2007-11-9 12:04:11 >