|
Modifying the New Submenu
The File menu in a file system folder contains a New submenu that, by default,
includes the Shortcut and Folder commands. These commands allow the user to
create new shortcuts and folders within the current folder. The New submenu can
also include other nondefault commands that let the user create new files of
various types within the current folder, such as sound files, text files, and
bitmap files. For example, the New submenu might include a Sound command that
creates a .WAV file in the current folder.
If your application creates a type of file that the user may want to create
from within a file system folder, you should consider adding a command for it to
the New submenu. For example, suppose you have created a graphics application
that creates files with the .XYZ filename extension. You could add a command,
such as XYZ Picture, that creates a new .XYZ file or launches your application
and opens a new .XYZ file for editing.
You add a command to the New submenu by including a ShellNew key below the file association key for your filetype. When the system needs
to create the New submenu, it searches through the file association entries for
instances of the ShellNew key. When it finds an instance of ShellNew, the system retrieves the string associated with the application identifier
key (xyzfile) and adds the string to the New submenu as a new command. Note that
an Open command must be registered below the application identifier key;
otherwise, the system does not add the Open command to the New submenu.
The following example shows the registry entries needed to add the XYZ Picture
command to the New submenu.
HKEY_CLASSES_ROOT
.xyz="xyzfile"
ShellNew
NullFile=""
.
.
.
xyzfile="XYZ Picture"
shell
open
command="C:\XYZ\XYZAPP.EXE %1
The data names for the ShellNew key specify the method to use to create a new file of the type designated by
the filename extension. There are four possible data names and values for the ShellNew key.
Data name
| Value
| Description
| NullFile
| ""
| Creates an empty (null) file. If this data name is specified, Data and
FileName are ignored.
| Data
| binary-value
| Creates a file that contains the data specified by binary-value. This data name is ignored if either NullFile or FileName is specified.
| FileName
| path-name
| Creates a copy of the file specified by path-name. This data name is ignored if NullFile is specified.
| Command
| path-name
| Executes the command specified by path-name when the file is created. For example, the command might start a wizard.
|
| 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
|