How to Install .dll files in the Registry?
-
Hai, Plz anyone give the solution for ,How to install .dll files in the windows Registry using Regsvr32 ? Please Clearly state the steps for installation.
-
The Software is SIM card Reader.We are creating the Real time WebApplication for the Mobile users.In particular Asp.net Page Having a link Which Calls that sIM CARD Reader Software.But the error was created that (one of the dll).dll was required.But that dll already with in that folder.we are get confused.plz suggest me a suitable solution to run that software in asp.net page link.
Have you used dependency walker as said in previous reply ? Dependency walker will be presented in
VS--> visual studio tools
.Prasad Notifier using ATL | Operator new[],delete[][^]
-
Hai, Plz anyone give the solution for ,How to install .dll files in the windows Registry using Regsvr32 ? Please Clearly state the steps for installation.
senthil_rajesh wrote:
How to install .dll files in the windows Registry using Regsvr32
Is your dll is self registrable dll(COM dll) ? If yes, then from command line you need to use
regsvr32 "dll path"
.Prasad Notifier using ATL | Operator new[],delete[][^]
-
senthil_rajesh wrote:
How to install .dll files in the windows Registry using Regsvr32
Is your dll is self registrable dll(COM dll) ? If yes, then from command line you need to use
regsvr32 "dll path"
.Prasad Notifier using ATL | Operator new[],delete[][^]
I also did like that ,but error message occured that " .dll was loaded but unable to find the Entry point.so it was unable to registered.".
-
I also did like that ,but error message occured that " .dll was loaded but unable to find the Entry point.so it was unable to registered.".
I asked you , whether your dll is self registrable ? If yes, then only you can use
Regsvr32
. Make sure, there is functionDllRegistrServer
present in your code. Make sure, you are giving valid path using "\\".Prasad Notifier using ATL | Operator new[],delete[][^]
-
I asked you , whether your dll is self registrable ? If yes, then only you can use
Regsvr32
. Make sure, there is functionDllRegistrServer
present in your code. Make sure, you are giving valid path using "\\".Prasad Notifier using ATL | Operator new[],delete[][^]
Actually i got the software which contains .dll and an .exe files ,how to find that .dll files is self registerable or not?.i want to execute the software through the HTML Link in ASP.NET.Plz guide me.
-
Actually i got the software which contains .dll and an .exe files ,how to find that .dll files is self registerable or not?.i want to execute the software through the HTML Link in ASP.NET.Plz guide me.
In case of dlls, its not needed to register it. In case of COM dlls only it is needed. At least you can ask this from person, you got this software from. If its a COM dlls, use dependency walker to see exported function, there should be function
DllRegisterServer
.Prasad Notifier using ATL | Operator new[],delete[][^]
-
In case of dlls, its not needed to register it. In case of COM dlls only it is needed. At least you can ask this from person, you got this software from. If its a COM dlls, use dependency walker to see exported function, there should be function
DllRegisterServer
.Prasad Notifier using ATL | Operator new[],delete[][^]
The Software is SIM card Reader.We are creating the Real time WebApplication for the Mobile users.In particular Asp.net Page Having a link Which Calls that sIM CARD Reader Software.But the error was created that (one of the dll).dll was required.But that dll already with in that folder.we are get confused.plz suggest me a suitable solution to run that software in asp.net page link.
-
Have you used dependency walker as said in previous reply ? Dependency walker will be presented in
VS--> visual studio tools
.Prasad Notifier using ATL | Operator new[],delete[][^]
ya,using dependency walker i able to open an .dll file.how to register?,what is the use of dependency walker?.i didn't work before related to .dll files.
-
ya,using dependency walker i able to open an .dll file.how to register?,what is the use of dependency walker?.i didn't work before related to .dll files.
It is tool to see exported function from dll in question, and to check the dll required to run this dll. See http://www.dependencywalker.com/[^].
Prasad Notifier using ATL | Operator new[],delete[][^]