Question

Does anyone know if it is possible to embed a file open dialog inside your own form?

We have a tabbed dialog and on one of the tabs we want the user to be able to browse for a file with the same functionality as the the standard open dialog e.g. 'Look in' combobox, places bar, shell file list, file name comboedit with name completion etc etc.

I've looked at recreating the dialog with some 3rd party components, namely Jam Shell Browser Components

I can get most of the functionality this way, but I'm missing a couple of things e.g. the places bar and the filename auto completion\suggestion

Was it helpful?

Solution

I don't want to say it's impossible but considering the amount of ugly winapi hacks you'd probably involve I suggest "recreating the dialog with some 3rd party components" but with VirtualShellTools.
VirtualShellTools can be downloaded from this SVN archive.
And here's the google code project page.

(At least it has the filename autocompletion combobox though i am not sure if it has the places bar). Hope it helps.

OTHER TIPS

The places bar is not that difficult to implement using a TListView component set to large icons. The Raize Components library also has some source that would help in this arena.

Just a small note, it's fairly easy to add an auto-completing combobox with SHAutoComplete.

See this article for details.

Maybe this Shell Controls Demo can help you.

Sample form

Edit: ATM the site seems to be down. The Wayback Machine helps.
Here's the latest download link for the controls involved from the wayback machine:

I would re-create it: it shouldn't take long with the VCL Components. The autocomplete is not hard, and you can get the rest of the data if you look through the windows docs long enough.

You can try and cheat by detecting the tab change and displaying the open dialog as if it were the tab page. You will have to detect the user clicking outside of the dialog (e.g. on a different tab) and prevent it closing until you want to change tabs.

Cheers

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top