|
Registering Your Namespace Extension
Registering your extension is not particularly difficult but it must be done
precisely or users will never find your namespace extension. Consider the
following registry entries, some of which are required for any namespace extension.
Namespace extensions, like all COM objects, must be registered in the CLSID
section. In addition, they also have to be "apartment aware", having the named
value ThreadingModel set to Apartment, as shown below.
HKEY_CLASSES_ROOT\CLSID\{CLSID}
HKEY_CLASSES_ROOT_CLSID\{CLSID}\InProcServer32\(default)=path\filename.dll
HKEY_CLASSES_ROOT_CLSID\{CLSID} \InProcServer32\"ThreadingModel" = "Apartment"
If your namespace extension is going to run under a rooted Explorer, you
should add the following entries so the Open and Explorer verbs appear on your
namespace extension.
HKEY_CLASSES_ROOT_CLSID\{CLSID}\Shell\Open\Command\(default)
=c:\windows\explorer.exe/root,%1
HKEY_CLASSES_ROOT_CLSID\{CLSID}\Shell\Explore\Command\(default)
=c:\windows\explorer.exe/e,/root/%1
You can also include entries under the following key for the default icon.
HKEY_CLASSES_ROOT_CLSID\{CLSID}\DefaultIcon\(default)="path\filename.dll",IconIndex
The following is an optional key but one that can be very important. If you
include the "Attributes" named value under ...{CLSID}\ShellFolder, it specifies the attributes of a junction point by using the
SFGAO_* flags returned by the IShellFolder::GetAttributesOf method.
HKEY_CLASSES_ROOT_CLSID\{CLSID}\ShellFolder\Attributes = 0000 00 00
For example, if the SFGAO_FOLDER flag is set and its junction point exists in
the system namespace, the user sees your extension's icon in the Explorer's
left pane and is able to browse into it using the standard (nonrooted) Explorer.
If this flag is not set, you must provide a rooted Explorer for browsing
Another example is the SFGAO_HASSUBFOLDER flag. If it is set, the Explorer can
make the extension's icon expandable to the next level by displaying the +
icon to its left.
Other registry entries you should know about include those required for
putting items into MyComputer or on the Desktop. The following entries list all the
items in those two locations:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
\MyComputer\NameSpace
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer
\Desktop\NameSpace
Finally, the following entry is currently required only for Windows NT but it
should always be included for future compatibility. This is the list of extensions that the
shell will load. Extensions not on this list will not be loaded by the shell
on NT.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\CurrentVersion\ShellExtensions
\Approved\{CLSID}="Extension Name"
| Last news from Greatis Software |
 |
|
Nostalgia .Net |
|
.Net is powerful, but not all-powerful, so sometimes we need to use Win32 API for our .Net applications. It's simple enough with Platform Invoke if you have Win32 skill, but we do not always have time to dig the ancient documentation, declare the special types that are compatible with Win32, find the values of the Win32's constants and so on. Nostalgia .Net offers several simple-to-use classes, and components that will allow you to forget about the headache of Win32 and just use the power of Win32 in your application the same way as you use the native. Net classes. More » |
| Recommended software for developers |
 |
|
Ultimate Pack |
|
Component pack for Delphi and C++ Builder that contains runtime form designer, runtime object inspector, print suite and much more for the very special price. More » |
 |
|
Form Designer .Net |
|
Unique runtime form design solution that allows to edit any form in .Net WinForms application at runtime with full source codes for only 300 euro! More » |
 |
|
Print Suite .Net |
|
Print Suite .Net is a set of components for easy printing texts, images and grids from your WinForms applications. Full C# source codes are available More » |
 |
|
Gradient Controls .Net |
|
Gradient Controls .Net offers controls with gradient background feature. Labels, panels and so on... Full C# source codes are available More » |
 |
|
Greatis iGrid |
|
iGrid plots drawing grid right over your desktop, so you can use it everywhere, with any drawing application without any special plugins for different graphic editors. More » |
All the contacts and projectsDmitry Vasiliev (just.dmitry)
Related LinksSoftware for Visual Studio .NET developers Software for Delphi and C++ Builder developers Software for Visual Basic 6 developers Delphi Tips&Tricks MegaDetailed.NET More Online Helps Win32 Programmer's Reference Win32 Multimedia Programmer's Reference OLE Programmer's Reference Microsoft Windows Pen API Programmer's Reference Microsoft Windows Sockets 2 Reference Microsoft Windows Telephony API (TAPI) Programmer's Reference Unix Manual Pages
|