views:

102

answers:

2

Is there a way to do it?

+1  A: 

Check this out : Customize Your Open File Dialog

EDIT:

http://msdn.microsoft.com/en-us/magazine/cc300434.aspx

When coding against the Open File common dialog in the Win32 API, you can set a style to hide the places bar. But like other features of the Win32 common dialogs, this setting seems to have gotten lost in the migration to the .NET Framework. Creating a common dialog has never been easier than it is in the Framework, but this simplicity comes at the cost of some flexibility. In addition, in managed code there is no way to extend the layout of the dialog with additional controls.

Ahmet Kakıcı
I've read that article before, it shows only how to define custom places bar. There's no mentioning of removing it.
Vince
What or who is being quoted in the quote in the answer?
bzlm
A: 

There is no support in the .net framework for substantial changes to the existing dialogs. However solutions like this cam help you a lot.

Dark Vader