i cannot register activeX control on registry.
-
Hi! my name is jinsoo. i am korean after installing xp service pack 1 and latest windows update. i cannot register activeX control on registry. when in 2003. this job was good in windows 2000. so though using regsvr32.exe not vc++ tool .the result was the same. the error message is 0x80070715. though i find the error message in msdn. i can not find that. my system is windows xp. tool is VC++(Serviced pack 6.0). i hope you help me to solve this problem. nice to meet u nice to meet u
-
Hi! my name is jinsoo. i am korean after installing xp service pack 1 and latest windows update. i cannot register activeX control on registry. when in 2003. this job was good in windows 2000. so though using regsvr32.exe not vc++ tool .the result was the same. the error message is 0x80070715. though i find the error message in msdn. i can not find that. my system is windows xp. tool is VC++(Serviced pack 6.0). i hope you help me to solve this problem. nice to meet u nice to meet u
Hi Jinsoo, Can you give more information? Is this your ActiveX object? Is it MFC/ATL ?? When I have issues like this then try debugging the registration of the control, for an ATL example: Put a breakpoint in your DllRegisterServer function. - Goto Project/Settings Menu in Visual Studio - Click the Debug tab on the right-hand side. - Type in "C:\WINDOWS\system32\regsvr32.exe" into the "Executable for debug session" text box - Put the full path of the debug binary into the "Program Arguments" text box Now run the debugger, you will get a dialog box asking if you want to continue (it is just informing you that regsvr32.exe you are running has no debug info.) Click OK and you should soon be put into the DllRegisterServer function, now just drill down until you come across the error. Cheers, Andy