Register ATL control.who can help me?
I have created a ATL control with c++.net 2003. I find the control can be registered on local PC by regsvr32.exe,but it can't be registered on other PC.
Why?
I have created a ATL control with c++.net 2003. I find the control can be registered on local PC by regsvr32.exe,but it can't be registered on other PC.
Why?
Hi,
Are you sure it has successfully registered on your machine also?
Run the following from command line:
ntsd -g regsvr32 yourdll.dll
See if there are any error messages/exceptions.
Regards,
Vikram
You are probably missing ATL.dll. By default, ATL requires this DLL for the registration component. You can eliminate this dependency by adding the _ATL_STATIC_REGISTRY #define to your project.