FolderBrowser Redux

J

justdoit693

I know some problems with the folderbrowser were already mentioned but i'm
having a different problem...no matter what I do, I can't make the "New
Folder" button go away...even if I explicitly turn it off before calling
ShowDialog() as follows:

folderBrowserDialog.ShowNewFolderButton = false ;
if( folderBrowserDialog.ShowDialog(this) == DialogResult.OK )
{

....



Is this a know problem? Why is this such a tough thing to get working? Any
ideas? Should I switch over to one of the other solutions mentioned
earlier?
 
H

Herfried K. Wagner

Hello,

justdoit693 said:
having a different problem...no matter what I do, I can't make the "New
Folder" button go away...even if I explicitly turn it off before calling
ShowDialog() as follows:

folderBrowserDialog.ShowNewFolderButton = false ;
if( folderBrowserDialog.ShowDialog(this) == DialogResult.OK )

I am not able to repro this with .NET 1.1, Windows XP SP1.

What system do you use?

Regard,
Herfried K. Wagner
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top