|
|
|
The stardard method to register and unregister ActiveX component is running the REGSVR32 utility, which forces you to bring up the Start|Run dialog and manually type the command line. A much better approach is to have the Register and Unregister commands right in the context menu that appears when you right-click a DLL, EXE, or OCX file in the Explorer window.
To create these menu commands, copy the following text to the clipboard, paste it into an editor (such as Notepad) and save it to a file with a .reg extension, such as ActiveX.Reg. Then double-click the file, and voila!, you'll be able to register and unregister all types of ActiveX components by right-clicking on them.
Note that the .reg file below assumes that the REGSVR32.EXE utility is your system path, so that it can be run without specifying the complete path. If this is not the case you should move it to the main Windows directory (e.g. C:\WINDOWS or C:\WINNT) or you should provide the complete path in all the lines of the .reg file that reference it.
-------------------------------------------------------------------------------- Start of the REG file --------------------------------------------------------------------------------
REGEDIT4
; ActiveX DLLs
[HKEY_CLASSES_ROOT\.dll] @="dllfile"
[HKEY_CLASSES_ROOT\dllfile\shell\regdll] @="Register ActiveX DLL"
[HKEY_CLASSES_ROOT\dllfile\shell\regdll\command] @="regsvr32.exe \"%L\""
[HKEY_CLASSES_ROOT\dllfile\shell\unregdll] @="Unregister ActiveX DLL"
[HKEY_CLASSES_ROOT\dllfile\shell\unregdll\command] @="regsvr32.exe /u \"%L\""
; ActiveX Controls
[HKEY_CLASSES_ROOT\.ocx] @="ocxfile"
[HKEY_CLASSES_ROOT\ocxfile\shell\regocx] @="Register OCX Control"
[HKEY_CLASSES_ROOT\ocxfile\shell\regocx\command] @="regsvr32.exe \"%L\""
[HKEY_CLASSES_ROOT\ocxfile\shell\unregocx] @="Unregister OCX Control"
[HKEY_CLASSES_ROOT\ocxfile\shell\unregocx\command] @="regsvr32.exe /u \"%L\""
; ActiveX EXEs
[HKEY_CLASSES_ROOT\.exe] @="exefile"
[HKEY_CLASSES_ROOT\exefile\shell\regexe] @="Register ActiveX EXE"
[HKEY_CLASSES_ROOT\exefile\shell\regexe\command] @="\"%L\" /regserver"
[HKEY_CLASSES_ROOT\exefile\shell\unregexe] @="Unregister Active EXE"
[HKEY_CLASSES_ROOT\exefile\shell\unregexe\command] @="\"%L\" /unregserver"
-------------------------------------------------------------------------------- End of the REG file -------------------------------------------------------------------------------- |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|