Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
4k views

Windows shell extension with C# [closed]

I was wanting to write a simple windows shell extension to add to the context menu, and C# is the language I most use these days. Is it a decent choice for a shell extension? Are the interfaces easy ...
6
votes
1answer
157 views

Close child dialogs when closing the parent

I'm writing a Windows shell extension in C# using EZShellExtensions.NET. I contribute a context menu that shows dialogs. Suppose that I show an Explorer window (A). Then I use the context menu to ...
6
votes
3answers
2k views

Tutorial for Windows Shell Extensions

I've been postponing this part of the project because I haven't found any particular helpful example/tutorial for these 2 aspects of Shell Extensions: Return information for the Hint when you hover ...
4
votes
3answers
518 views

How can I write a Windows Shell Namespace Extension in Delphi?

First, sorry for my poor English... I want to add a virtual folder to Windows Explorer using a Namespace Extension (NSE), and I want users to be able to open this virtual folder to explore some path ...
4
votes
2answers
1k views

Making a Windows shell extension in Visual Studio 2010

I'm trying to create an absurdly simple shell extension in C++ using Visual Studio 2010, but I can't even seem to get the examples out there to work as a starting point. I'm using Windows 7 x64. ...
4
votes
3answers
1k views

Debugging shell extension in Windows 7

I'm trying to debug shell extension (IContextMenu) in Windows 7 with Visual C++ 2008. I have set DesktopProcess=1 in the registry and set host app to explorer.exe. But when I start the debugger, it ...
4
votes
4answers
250 views

Integrate with the Windows Shell

OK, I want to create a windows shell extention that sits in the file menu much like the "Tortorise SVN" menu. Does anyone know where I'd begin, a good article, or what interfaces to implement? ...
3
votes
1answer
110 views

How to write a shell extension in C++?

This seemed like a common question but after doing some searching, I wasn't really able to find my answers. There is an article on this here: http://www.codeproject.com/KB/shell/shellextguide1.aspx ...
3
votes
2answers
239 views

Loop through IContextMenu

How do I loop through all items and sub items of a IContextMenu and list all available verbs? So far, I have this working code extracted from JCL: function DisplayContextMenuPidl(const Handle: ...
3
votes
2answers
381 views

Shell Integrate in Windows for a Specific File Type With C#

So I searched for a guide of how to shell integrate your application (add it to the right click menu) with C#, but I couldn't find how to do that only for a specific file type. I know it is possible ...
3
votes
2answers
414 views

.NET Windows Explorer extension to browse a file like .zip?

I made a browser program for a archive type with the .mpq extension, which is highly used in Blizzard games. It is like an explorer but only explores files inside MPQ archives. Now, we all know how ...
3
votes
1answer
99 views

Is there a Click Handler for Shell Extension

After going through MSDN Shell Extensions I am not quite sure if I can extend the behaviour of Shell Click or Click Event of explorer. Any suggestion or Code Snipet, article or Walk through?
3
votes
3answers
337 views

In-Proc SxS opens for shell extension in managed code?

The recommendation used to be "Do not write in-process shell extensions in managed code." But with .NET Framework 4 and In-Process Side-by-Side the main reason not to write shell extensions in ...
3
votes
1answer
529 views

Shell extension for drive like GDrive?

How can I go about with writing a shell extension to display online files in a virtual drive like the Gmail Drive does?
3
votes
3answers
588 views

Shell extension for selected file

Is there a way to know which file is being selected in windows explorer? I've been looking at the tutorial posted here Idiots guide to ... but the actions described are: hover context menu ...
2
votes
2answers
164 views

Windows Explorer Shell Extension: create file and enter “rename” mode

For a shell extension (UI is similar to "New/" context menu), I need to create a file, select it and enter "rename" mode, so the user can adjust the default name. Q: How do I enter "rename" mode ...
2
votes
2answers
303 views

Is it possible to write a Windows shell icon overlay handler in C#?

Any examples or libraries which can help me to draw overlay image over folders? Example from TortoiseSVN:
2
votes
1answer
273 views

How to implement a file type based filesystem?

I want to essentially make it so that you never need to unzip/unrar any files. Currently, I have a Dokan filesystem which can do it given a specific zip file but I wanted to know how I can make it ...
2
votes
2answers
877 views

Writing a Windows Shell Extension similiar to the Assembly Cache Viewer

I would like to write a shell extensions to completely customize the display of a particular folder, ala the Assembly Cache Viewer (browse to c:\windows\assembly and you will see what I mean). Which ...
1
vote
0answers
9 views

Contextual Menu to a Specific Folder

I have read how to add a contextual menu though registry to all files or files according the extension. But how can I add a contextual menu that will work ONLY on files of a specific folder (for ...
1
vote
3answers
151 views

Writing namespace extensions with Windows 7 integration

I'm new to the topic shell extensions and I'm looking for resources about namespace extensions. I would like to write a namespace extension which supports SFTP with all options to browse like FTP in ...
1
vote
0answers
25 views

What is the correct encoding for the Windons Shell Extension “Property Description Schema” file?

I have a library package that I am using to create a Windows Shell Extension, and in particular the code needed for properties of files. I need my project to support Unicode files and text, so I ...
1
vote
1answer
96 views

Windows Explorer Shell Extension: recursive delete via ITransferSource::RemoveItem?

I'm implementing a Windows Explorer Shell Extension for a networked file system on Windows 7, and I've hit a snag while implementing the Delete functionality. Let's say my remote filesystem ...
1
vote
0answers
58 views

How to replace Explorer's TIF image handler?

I've created a thumbnail image handler (shell extension) for Windows Explorer, for handling several TIF/TIFF image formats. I know that Explorer already includes TIFF support (provided by the ...
1
vote
3answers
578 views

Call windows explorer shell extension

Is there any way of calling a DLL that is a shell extension programmatically? We use a software that registers a shell extension on windows explorer, and I need to call one of the items available on ...
1
vote
1answer
124 views

Need to write a shell extension

I need to write a shell extension for a small context menu. unfortunately i reused the code available in open source which uses .net 4.0 now the problem is the requirement is I shud not use .NET 4.0. ...
1
vote
0answers
58 views

Modify original windows window

Is it possible somehow modifiy original windows window programatically? For example, adding some buttons or similar things?
1
vote
1answer
2k views

TFS Shell Integration - TF Power Tools requires Visual Studio 2010

I just started using Team Foundation 2010, but I'm connecting to the server with Visual Studio 2008 SP1. It's working alright, except I can't install Power Tools to include shell integration because ...
1
vote
1answer
148 views

Windows 7 Explorer.exe

I want to extend Windows 7 Explorer.exe (32/64 bits) where does one start? I want to modify UI adding new menu items and perhaps add new windows directly inside of current window. Is it related to ...
1
vote
1answer
118 views

Can we execute rightclick without using pCmdInfo->lpVerb

I am not agnaist using pCmdInfo->lpVerb but my problem is how will we handle the situation when we create the rightclick submenus dynamically. For example, I have the following scenario: ...
1
vote
2answers
317 views

How do we register Shell extension with a certain file extension

I have tested a small shell extension referring to the article on code project. Though the whole process is quite complicated , I have some how idea what are the follwoing methodsand what do thet ...
1
vote
1answer
119 views

Why doesn't interface inheritance work when writing shell extensions in c#?

According to this article about writing shell extensions in .Net, inheriting the shell interfaces as you might naturally do when writing code doesn't work. I've observed this in my own code as well. ...
1
vote
0answers
34 views

Anyone have a database of file extensions & icons to go with the extensions?

Ok, im developing some software which requires file icons to display lists of files on a computer... i don't want to use the system ExtractAssociatedIcon api's i'd rather load the icons for the file ...
1
vote
1answer
951 views

How do I write shell extension context menu in C++ Builder 2010?

I'm looking for some examples for writing a shell extension in C++ Builder 2010 (2007 and 2009 would also probably be relevant) so I can right click a file in Explorer and get the file path in my VCL ...
1
vote
1answer
81 views

What is a reliable way to get a DLL to load when Windows Explorer loads?

I am researching the development of an add-on for Windows Explorer that will add some enhancements to the WebDAV therein, and to that end I'm looking for a good, reliable way to force a DLL to be ...
1
vote
1answer
395 views

How To Disable Shell Extension In FileOpen Dialog

I am talking about windows shell extensions. I have a shell extension which could show the specific properties of my customized file type, say, *.filetype. And of course it will cause my shell ...
1
vote
1answer
122 views

How to inherit from the windows explorer (in any programming language, with help of any tool)

How to inherit from the windows explorer (Desktop, thing with help of which we explore our Mu computer and so on directory’s) (in any programming language)? customize it add program fetchers ( ...
1
vote
4answers
4k views

ClassFactory cannot supply requested class 0x80040111 Error: -2147221231

Using Visual Studio 2008 I first encountered this when trying to open a standard save file dialog box in visual basic. So far I've worked around it after fruitless searching. Now I find that any ...
0
votes
1answer
32 views

Icon Overlay Like SVN

I want to make an icon overlay like here: http://www.codeproject.com/Articles/7484/How-to-overlay-an-icon-over-existing-shell-objects I downloaded this source code and tried to build solution on ...
0
votes
1answer
50 views

Windows Explorer Alternate Data Stream Shell Extension

I have some files that use alternate data stream and are not shown on windows explorer. I would like to make a shell extension or a program that runs on background that when I use windows explorer and ...
0
votes
1answer
37 views

Directory Path from Right Click

I'm trying to write a program that can password protect individual folders, but I'm having a little trouble. I already have the option added to the context menu, but I don't know how to get the folder ...
0
votes
1answer
31 views

capturing a dialog box's process

I'm working on a shell extension in C# where I need to monitor if the system has thrown up a dialog box for moving/copying/deleting files. When the system throws up a box, I need to start running a ...
0
votes
1answer
46 views

Registration of Shell Extension for specific file type

I can sucessfully register my shell extension dll for all file types under the HKCR * key, but when I try to register it for a specific file type it fails. Do you know what might the problem is? The ...
0
votes
0answers
41 views

display overlay icon using C#

I want to create a program to display overlay icon on file and folder like dropbox(Overlay icon depens on file status).I use C# and .NET FrameWork 4 to prgamn. However i couldn't find any solution ...
0
votes
1answer
95 views

TFS power tool shell extention icon overlay appear on files/folders not under source control

I'm running Windows XP Professional SP3, with Visual Studio 2010 Professional. I installed the latest version of TFS power tool lately. Just now I found out that the icon overlay of the shell ...
0
votes
1answer
66 views

Adding a tab to default Properties' window of image files

I want to add a tab to Properties dialog of image files in Windows 7. I have many family images and I'd like see the details of each images with a tab in window's properties. Details like 'Camera ...
0
votes
2answers
46 views

Could a shell extension be causing my program to crash?

My company builds an MFC application that runs on Windows XP. One of our customers has reported a crash in this application that occurs when it opens a Common File Dialog to allow the user to save a ...
0
votes
2answers
44 views

How to add a menu item (in right click menu) to expolorer for all files (*.*)?

When Winrar installed, and user right click on a file, a new mune item exists: "Add to Archive..." How can do like this for my application?
0
votes
1answer
195 views

C++ Windows Shell Extensions - Win7 32bit - 64bit compatibility issues

i have visual studio 2005 and i am writing a shell extension for windows explorer. It works in Windows Vista 32bit where i compile the project. It also works on Windows 7 64bit when the project has ...
0
votes
0answers
240 views

C# Shell Extension Context Menu - Create sub menu nodes

Don't understand much from it ;) but following this ( http://blogs.msdn.com/b/codefx/archive/2010/09/14/writing-windows-shell-extension-with-net-framework-4-c-vb-net-part-1.aspx ) series of blog ...

1 2