Does anybody knows how the Context Menu Handler works?
Printable View
Does anybody knows how the Context Menu Handler works?
What do you mean by the 'Handler'?
How to add in Shell Context Menu an option.:confused:
Like Winzip or Copy???
In your Installation Project go to the File Types editor (View\Editors\File Types) and "Add an Action".
trisuglow can you give me more information about this...(Like code or some url plz!)
To add a option(Menu) to the context menu of Windows Explorer
start the RegEdit utility and create the following key:
HKEY_CLASSES_ROOT\*\shell\OpenMe
For the default value of this key type in the text as you want it to appear on the context menu. For example:OpenMe
Now create a new subkey and name it command:
HKEY_CLASSES_ROOT\*\shell\OpenMe\command
Set the default value for this key to the path of your file followed by a space and %1
For example:
c:\Windows\OpenMe\notepad.exe %1
The %1 part will be replaced by Explorer to the path and name of the file you have right clicked on.
For more help:
http://msdn.microsoft.com/library/de...nuhandlers.asp
Thanks DigitalHand :D
Hi all
this is simple but i need add ico just next to your context menu ?? Any idea ?