Difference between revisions of "Registering a WIndows DLL"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (New page: <pre> regsvr32 c:\windows\system32\dcl.dll </pre> Also see: * http://www.tutorialspoint.com/dll/dll_registering.htm =Notes= You can't use regsvr32 if the DLL is not an Active-X DLL. ...) |
PeterHarding (talk | contribs) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
=REGSVR32= | |||
Use regsvr32 to register DLLs as follows: | |||
<pre> | <pre> | ||
Line 8: | Line 10: | ||
* http://www.tutorialspoint.com/dll/dll_registering.htm | * http://www.tutorialspoint.com/dll/dll_registering.htm | ||
* http://www.pcworld.com/article/id,126116-page,1-c,maintenancemanagement/article.html | |||
* http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.languages.vb/2004-04/2786.html | |||
=Notes= | =Notes= | ||
You can't use regsvr32 if the DLL is not an Active-X DLL. Quite a few DLLs are not active-x DLLs and don't have to be registered. All you have to do is make sure that the DLLs in question are in a place that can be found by your application (usually in the same directory as the application or in a Windows System directory). This is true whether you're using Windows 95, 98, NT, 2000, XP whatever. | You can't use regsvr32 if the DLL is not an Active-X DLL. Quite a few DLLs are not active-x DLLs and don't have to be registered. All you have to do is make sure that the DLLs in question are in a place that can be found by your application (usually in the same directory as the application or in a Windows System directory). This is true whether you're using Windows 95, 98, NT, 2000, XP whatever. | ||
[[Category:WinXP]] | |||
[[Category:Windows Development]] |
Latest revision as of 17:20, 6 January 2011
REGSVR32
Use regsvr32 to register DLLs as follows:
regsvr32 c:\windows\system32\dcl.dll
Also see:
- http://www.tutorialspoint.com/dll/dll_registering.htm
- http://www.pcworld.com/article/id,126116-page,1-c,maintenancemanagement/article.html
- http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.languages.vb/2004-04/2786.html
Notes
You can't use regsvr32 if the DLL is not an Active-X DLL. Quite a few DLLs are not active-x DLLs and don't have to be registered. All you have to do is make sure that the DLLs in question are in a place that can be found by your application (usually in the same directory as the application or in a Windows System directory). This is true whether you're using Windows 95, 98, NT, 2000, XP whatever.