I'm building my VS2010 solution and in output window there is an error just for one project. In error tab: Error 161 Cannot register type library "D:\Sites\Website\MyPortal.Website.Controllers\bin\Debug\MyPortal.Website.Controllers.tlb". Error accessing the OLE registry. (Exception from HRESULT: 0x8002801C (TYPE_E_REGISTRYACCESS)) MyPortal.Website.Controllers In output tab: Compile complete -- 0 errors, 153 warnings MyPortal.Website.Controllers -> [...] read more
I am trying to register RichTx32.Ocx for an application I am working on in Access 2010 (File Format 2003 mdb). I have been updated to Windows 7 64 bit (from Windows XP SP3 32 bit) and can't get the ActiveX OCX to register. I have put the file in the [...] read more
I enter this: > regasm COMTest.dll /tlb:COMTest.tlb /codebase COMTest And I get the following error: > An error occurred while registering the exported type library: Error accessing > the OLE registry. (Exception from HRESULT: 0x8002801C (TYPE_E_REGISTRYACCESS)) What does it mean, how do I fix it? read more
I have problem with registration my COM C# component ,here is the code: [Guid("BBA10049-5A29-46f2-9D6A-084A38345F11"), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)] public interface DBCOM_Events { } [Guid("793DD198-0E9C-4b2d-9C4D-609584D8B4DC"), ClassInterface(ClassInterfaceType.None), ComSourceInterfaces(typeof(DBCOM_Events))] public class CSharpIstreamWraper : IStream { public Stream InnerStream; public string name; public CSharpIstreamWraper(Stream NetworkStream, string name_ = null) { InnerStream = NetworkStream; name = name_; } [...] read more
I am new to .NET and windows in general (but have experience with C/C++) and am running into a problem when I try to instantiate a class that is defined in a dll. MY SETUP: In Visual Studio 2013, my solution contains two projects: 1. c# windows application (.NET 4.5) [...] read more
I have created simple BHO with ATL using these instructions http://msdn.microsoft.com/en-us/library/bb250489(v=vs.85).aspx. I am creating both 64 bit and 32 bit dll of the dll. The problem happens when I try to to unregistered the 64 bit dll after the 32 bit version using regsvr32, I am getting 0x8002801c error. (If [...] read more
I have Crystal report 10 I try to use the Crystal Activex Report Viewer Library 10 (CRViewer.dll) but : -in Visual Basic 6.0 IDE i obtain the errore "error accessing the system registry" -using regsvr32 "C:\programmi\Business Objects\Common \3.5\crystalreportviewers10\ActiveXControls\CRViewer.dll" i obtain the error 0x8002801c (...problem with registry...) read more
I have a CComModule that is calling RegisterServer (TRUE) on DllRegisterServer and UnregisterServer (TRUE) on DllUnregisterServer. The UnregisterServer is getting a 0x8002801C (Error accessing the OLE registry.) error and leaving around registery keys. I am using a Windows Server 2k8 R2 machine with UAC enabled. The components are x86 and [...] read more
I'm creating an OpenEdge Progress-4GL application, based on a window, where I like to add a tabpage. In order to do this (as there is no tab page control in the palette), I've tried to add the OCX (ActiveX) control "Microsoft TabStrip Control, version 5.0 (SP2)". However, when I try [...] read more
Ok, I have a Microsoft StatusBar ActiveX control (SP6) within a dialog and for some reason recently when i attempt to access the dialog an error is thrown... The error is "The ActiveX Control "Microsoft StatusBar Control 6.0 (SP6) is not registered on this computer. Register the control and try [...] read more
I am creating a project in vs2010, it is intended to be installed per-user but I need to include a COM object (in a dll, I'm using ATL). The thing is I can only make the DLL register with admin privileges, but my installer doesn't require admin privileges and the [...] read more
I'm trying to create a program that scans a COM dll and creates a reg file of the necessary registry keys, without having to call regsvr32 and without having to have administrative permissions. To do that, I'm using RegOverridePredefKey to remap the windows registry hives inside a subkey of HKEY_CURRENT_USER. [...] read more
I'm trying to install Mozilla ActiveX Control v1.7.12. In the folder where the DLL resides I execute regsvr32 mozctlx.dll but this fails. I get an error message DllRegisterServer in mozctlx.dll failed Return code was: 0x8002801c I already tried an other version of the DLL, but no avail. Any ideas? TIA [...] read more