Tagged Questions

1
vote
3answers
43 views

Surely there is a way to obtain the full View pulldown for the current folder view?!

Motivation: Creating our own file dialog that looks & acts much like the std common dialog Problem: How to obtain the view pull-down for the current folder/shell container Apparent Dead Ends: …
1
vote
1answer
41 views

Global Shell Hook only registering local events

I am trying to use a global shell hook to listen for windows created and destroyed events, but it seems as though my program is only registering the destroyed event for the local thread. No creation …
0
votes
2answers
53 views

What is the “Shell Namespace” way to create a new folder?

Obviously this is trivial to do with win32 api - CreateDirectory(). But I'm trying to host an IShellView, and would like to do this the most shell-oriented way. I would have thought that there would …
1
vote
2answers
57 views

How to obtain the PIDL of an IShellFolder

If I have an IShellFolder interface pointer, how might I obtain its PIDL? I can see how to enumerate its children, and I can see how to use it to compare any two children... but how might I get its …
1
vote
1answer
85 views

How to tell Windows Explorer to refresh its icons?

Once my installer finishes installing new versions of my application's exe, I'd like to tell Explorer to use the new exe's icons for its shortcuts. However, I cannot figure out how to do this. From …
0
votes
1answer
84 views

How might I obtain the IContextMenu that is displayed in an IShellView context menu?

Building a file open dialog replacement. Much of it works now, but I would like to generate the view-mode drop-down for the toolbar directly from the shell view object. Looking at IShellView2, I can …
0
votes
6answers
91 views

Does anyone know where I can find the standard windows file dialog toolbar icons?

I'm trying to roll my own implementation of IShellBrowser because I need to have a more full-featured File Open and Save As dialog than Windows allows that is compatible with XP (and ideally with …
1
vote
2answers
67 views

Is there an OS function to translate a REFIID to a helpful name?

Short of writing a function manually that translates a few known REFIID to names, such as: if (riid == IID_IUnknown) return "IUnknown"; if (riid == IID_IShellBrowser) return "IShellBrowser"; ... Is …
1
vote
2answers
31 views

Should an implementor of IShellBrowser::QueryActiveShellView Method call AddRef for the caller?

I am attempting to implement an IShellBrowser. One method of such is: HRESULT STDMETHODCALLTYPE IShellBrowser::QueryActiveShellView(/* [out] */ __RPC__deref_out_opt IShellView **ppshv) This gets …
1
vote
2answers
61 views

How to implement IExplorerBrowser in MFC

Apparently, there's a fairly easy way to host Explorer in your app starting with Vista: http://www.codeproject.com/KB/vista/ExplorerBrowser.aspx However, that interface is only available starting …
0
votes
1answer
45 views

CFSTR_FILEDESCRIPTOR/CFSTR_FILECONTENTS ‘Copying Files’ Dialog missing

Hi, I have a namespace extension that supports copy-paste using the CFSTR_FILEDESCRIPTOR/ CFSTR_FILECONTENTS to copy virtual files to the clipboard. However, the 'Copying Files...' progress dialog …
0
votes
1answer
71 views

How to Execute/ShellExecuteEx/InvokeCommand ITEMIDLIST pointing to Shell objects ?

I'm building a kind of dock, and I struggle at finding how to save things like "Run", "Search", "Help", "Printers" and reopen them after that. I tried this : CComPtr<IShellFolder> pDF; …
0
votes
2answers
87 views

How to run ShellExecute on shell object clsid ?

Shell explorer on Windows define global objects such as ::{2559a1f4-21d7-11d4-bdaf-00c04f60b9f0 which is a link to the user "internet browser". I got these value from a shortcut that is …
8
votes
5answers
786 views

C# get thumbnail from file via windows api

Windows explorer has the ability to show thumbnails of files. These thumbnails are provided by core and third-party shell extensions. I know how to extend the shell to provide thumbnails to Windows. …
0
votes
0answers
89 views

Can’t read file summary properties in windows after reading them in code using Shell interop

After reading a file properties in code in a fashion similar to this, I go to the file in question using Windows Explorer and can't read the file summary properties. Am I missing something in my code? …

1 2 next
15 30 50 per page