Tagged Questions
The dllregistration tag has no wiki summary.
12
votes
2answers
1k views
Registration-free COM/DLL?
My program is using the Skype4COM.dll (A wrapper for the Skype API).
I am using Delphi 2010 - is there a way to make sure that my program is ALWAYS using the Skype4COM.dll that I will ship it with? ...
6
votes
7answers
4k views
In .NET, is there a need to register the DLL?
Is it necessary to register a compiled DLL (written in C# .NET) on a target machine.
The target machine will have .NET installed, is it enough to simply drop the DLL onto the target machine?
4
votes
3answers
6k views
wrap 32 bit dll for 64 bit operating system to work with regsvr32.exe
We are currently transferring our websites from Windows 2003 (32-bit) to Windows 2008 (64-bit) and have hit a problem.
One of our website use the payment gateway HSBC CPI which requires a DLL to be ...
3
votes
1answer
2k views
How to Register a Type Library without RegAsm.exe
I want to know if it's possible to register a type library without using the RegAsm tool. Here is my situation, which will hopefully explain why I want to do this:
I'm developing an assembly in .NET ...
3
votes
1answer
99 views
Is there a way to register a dll on a server as part of a build?
I'm trying to build our web application automatically. I need to be able to copy the VB6 DLL's to a server and register them since the webapp is using them as a backend. I can't seem to find a way to ...
3
votes
5answers
5k views
Problem registering a dll - Access Denied
When trying to run regasm in Win2008 Server:
regasm "C:\Program Files\FooProg\Bar.dll" /tlb:"C:\Program Files\FooProg\Bar.tlb"
I get the following error:
RegAsm : error RA0000 : An error ...
2
votes
1answer
68 views
checking the registration number entered by user
I was trying to use a custom dll for checking the registration number entered by user, but I run every time into “magic” behavior. In the tutorial examples ...
2
votes
1answer
71 views
Unregistering a COM dll using regsvr32
I've registered a COM dll using the regsvr32 command and I forgot the exact location of the assembly from where I did it. Now I'm facing trouble to unregister the dll. How I can unregister it? I tried ...
2
votes
2answers
566 views
Call function in VB.Net DLL without registering the DLL
Is it possible to call a function in a VB.Net dll without having registered the dll file? I need to call it from ASP Classic on shared hosting web server.
2
votes
2answers
128 views
Wish to learn registry manipulations, its concepts right from basics
I am totally new to registry manipulations and registry programming. I want to learn registry concepts like, what is meant by Class_Id, GUID,Registry Key, GAC, how to manipulate these, how to use ...
2
votes
1answer
3k views
Error 80040154 (Class not registered exception) when initializing VCProjectEngineObject (Microsoft.VisualStudio.VCProjectEngine.dll)
I'm trying to run this tool in order to convert a Visual C++ project to makefile.
The project I'm trying to convert project is written in VS2008, so I'm using a reference to ...
2
votes
1answer
245 views
adding a new component and what is Interop.dll file?
I add a component to my project and now in ..\bin\Debug folder this file
is added:Interop.t1.dll.
i want to make setup file for
my project ,because of Interop file that is created in ..\bin\Debug
,i ...
2
votes
1answer
396 views
Why does my .NET ActiveX control fail to register in Internet Explorer?
I am writing an ActiveX control to run in Internet Explorer. I am using C# and the System.Runtime.InteropServices namespace.
When I register the control manually on my development machine using ...
2
votes
5answers
1k views
What are the alternatives to dll registration for ActiveX
An application I have recently started work on has to register two dll's, "because of ActiveX".
This makes it difficult to have multiple version of the application present on your machine - say the ...
1
vote
1answer
184 views
Unable to register dll using regsvr32:The module “*.dll” failed to load
There is a similar question from stackoverflow. But I didn't find that the answer is helpful. I also used Google searched the websites, I have watched here and here.
I have tried the method they told ...
1
vote
2answers
70 views
What's the best way to secure dll files
We have a large application build in C++ builder, that at startup looks at a folder and loads all the present dll files. I figured this might not be such a good thing and tried my thoughts by creating ...
1
vote
1answer
55 views
Detect if a file is registered and be able to register it
I am trying to write a program in c#. Part of it needs to be be able to detect if a file(mostly dlls, but some other aswell) is registered. And the user must then be able to select a file(or files) ...
1
vote
1answer
172 views
How to unregister the assembly registered using regasm
I registred one of my dll in the development machine using regasm as below[asp aplication]
In cmd prompt ,i navigated to
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
Regasm /tlb "xxx.dll"
now ...
1
vote
0answers
57 views
Error in using a DLL in Excel (VBA)
I have created a C#-DLL and have added in VBA Excel. So all the time I get a error message #Value! in the excel when I call the function. The DLL is registrated and I have copied in the System32 ...
1
vote
1answer
292 views
How to repair COMException error 80040154?
Moving a working C# project from a 64 bit windows 7 machine to a 32 bit XP machine caused the following error:
Retrieving the COM class factory for component with CLSID
...
1
vote
1answer
197 views
Hand Install of 64-bit MS Access ODBC drivers when 32-bit Office is present
I want to do a hand install of the MS Access 64 bit odbc drivers. Uninstalling 32 bit Office and installing 64 bit Office is not an option due to the add-ins that our company uses.
I downloaded the ...
1
vote
0answers
81 views
unregister an .ocx in 'onbeforeinstall' event of Installer class then try to register it on install but couldnt done
Hi ,
I tried to unregister and delete an .ocx & a .dll from the System32(XP 32 bit os)/SysWow64(64bit OS) of the machine using C# code. I had written the Unregister & Delete code in the ...
1
vote
2answers
140 views
Using DLL registration in Delphi
I want to count the no of processes, as each process uses LoadLibary.
I'm thinking of a registering procedure as one option around this.
The idea is when one process uses the library the library can ...
1
vote
3answers
349 views
msi installation - register dll
I have a .NET winform application that requires to register a native dll during installation. My question is how can I register a dll (regsvr32 ABC.dll) as part of msi installion process? Similary how ...
1
vote
2answers
151 views
How do I step through a referenced assembly in Visual Studio?
I have a referenced assembly that keeps failing when I call it. I have the source for this assembly in a large project, Project A. I've compiled it and have been using it in Project B. Unfortunately ...
1
vote
3answers
12k views
How do I register a DLL on Windows 7 64-bit?
I have tried to use the following code:
cd c:\windows\system32
regsvr32.exe dllname.ax
But this is not working for me. How can I register a DLL on Windows 7 with a 64-bit processor?
1
vote
2answers
376 views
Unable to register dll using regsvr32
My project generates a dll and when build in Debug mode the dll gets registered automatically by Visual Studio 2005. But when I try to register the same dll in command prompt using "regsvr32" I'm ...
1
vote
1answer
574 views
Why use “DLLSelfRegister” in VB deployment package?
Why would you use DLLSelfRegister in a VB deployment package?
I am trying to sort out possible conflict problems with a calendar control: msacal70.ocx. Apparently there is a conflict with newer ...
1
vote
4answers
887 views
DllRegisterServer error 0xc0000005, (C++ COM Dll). how do I debug my DllRegisterServer function in Visual Studio 2008?
I have written a COM dll, and wish to register it using
regsvr32 myComdll.dll
I get an error :
DllRegisterServer failed, Return code was: 0xc0000005
I want to debug my DllRegsiterServer ...
1
vote
2answers
131 views
When is registering a Type Library necessary?
For example, if writing a shell extension, is it necessary to register the typelib with CComModule::RegisterServer (i.e., I'm wondering if calling it with FALSE will cause some issues).
1
vote
2answers
422 views
Tracking down slow managed DLL loading
I am faced with the following issue and at this point I feel like I'm severely lacking some sort of tool, I just don't know what that tool is, or what exactly it should be doing.
Here is the setup:
I ...
1
vote
1answer
374 views
Binding Microsoft.Web.DynamicData assembly at runtime failing
I've got a project using DynamicData that was wrote by somebody else. Every time i try debbuging it, I get the message I've attached at the bottom
I've already tried deploying the DynamicData dll to ...
1
vote
3answers
2k views
Installing/registering win32 OpenSSL libraries (distributed with my app)
My application depends on OpenSSL libraries (through Qt networking modules; you can't compile it into Qt statically, because of legal issues)
There's this project -
Win32 OpenSSL
Seems like all I ...
1
vote
3answers
274 views
Why is selfregistration bad?
Assuming self-registration is used to install components as part of a larger installer program, why is self-registration bad? E.g. self-registering vb custom controls or capicom or whatever. I ...
0
votes
1answer
15 views
My installer fails to register a DLL with E_ACCESSDENIED, and the DLL has a padlock icon when viewed in Explorer
I use Inno Setup as my installer. The installer failed to register a DLL. It turned out that regsvr32 failed with error code 0x80070005, which stands for E_ACCESSDENIED. When I opened "C:\Program ...
0
votes
1answer
71 views
Internet Explorer extension (Browser Helper Objects) DLL registration erorr
I created DLL file using visual studio 2008 with help of http://msdn.microsoft.com/en-us/library/bb250489(v=vs.85).aspx this document. Then i registered the dll using the command prompt
cmd: ...
0
votes
1answer
58 views
How to make a C# win service app to refer assemblies from a host machine
I am building an agent service in C# to communicate with SCVMM installed on host. To do that the agent refers the following assemblies: Microsoft.SystemCenter.VirtualMachineManager.dll and Erros.dll ...
0
votes
2answers
169 views
Not able to register my 64bit dll through nsis script ?
I have a 64bit dll which i'm able to register from command prompt with regsvr32. But the problem is when i try to register my dll through nsis script its not registered. I used RegDLL command in nsis ...
0
votes
1answer
116 views
Windows Explorer plugin DLL in 32 and 64 bits
I am currently working on a DLL for Windows Explorer, which provides various features like information and thumbnails for certain types of files. So far it works fine on Windows x64, and I am now ...
0
votes
0answers
75 views
Cannot Register ActiveX/Com component dll's
I have been having trouble registering dll's such as ASPEXEC.DLL or XZIP.DLL in Windows 7 x64. When I use regsvr32 at the command prompt (eg. C:\regsvr32 XZip.dll) it tells me it loaded the file but ...
0
votes
1answer
205 views
Problem with IPHLPAPI.DLL on Windows Server 2008
I am trying to install an application which uses the API GetIPAddrfromTable stack. When I start up the application, I get the error "Procedure entry point not found in IPHLPAPI.dll"
I noticed that ...
0
votes
1answer
65 views
Browser Helper Object cannot load module?
I am creating a Browser Helper Object in C++, and previous tests were successful on multiple machines. However, the final product only works on the computer that it was developed on. The .dll file was ...
0
votes
0answers
40 views
Different DLLs Project ATL versions installed on windows
I have a ATL project v1.0, atfter include features result in ATL project v2.0.
How do I register both? But without overwriting the previous version.
I tried to change the class-id "uuid" e .rgs file:
...
0
votes
1answer
188 views
What keys does regsvr32.exe add for a DLL?
I'm not sure if this is a simple question or it varies depending on the DLL... I have a codebase where the DLL uses atlbase.h and I think that means it registers a fairly standard set of keys/values? ...
0
votes
0answers
31 views
Issue registering dll with UDFs for Excel
I've created a .NET solution with a Addin for Excel in C++ (xll) and a C# library (dll) with UDFs to be used in Excel.
I added to the solution an installation project which writes few entries to the ...
0
votes
0answers
435 views
How to register dll on win 7 64-bit processor
Dear All,
I'm facing problem while registering dll on windows 7 64-bit processor, for that i already use this following code(regsvr32 dllname) but it's giving error message so ur having any ...
0
votes
1answer
867 views
Can't call 32bit dll under 64bit windows
I try to create a COM object from my JS script like this:
function main()
{
var MyApplication = new ActiveXObject("Base.Application");
}
main();
I am getting error: "Automation server can't ...
0
votes
1answer
709 views
Python 64 bit DLL COM Server Registration Problem on 64 bit Windows 7
I am trying to create a simple COM server using Python 2.7 on 64 bit Windows 7, but I can't get the DLL registered successfully. I am able to do this successfully using Python 2.6 on 32 bit Windows ...
0
votes
1answer
108 views
Sign a dll using cmd
I have a dll (project.dll) I want to sign the dll using cmd as I don't have source code of it.
Is it possible to sign a dll without sourcecode.
If yes, please let me know how to do it.
0
votes
3answers
109 views
dynamically running a DLL at a remote Windows box?
Is there a way of dynamically running a DLL at a remote Windows box?
Say a user wants to send a his own DLL file to a remote server and run a function in that DLL at the remote site. The user may be ...