Folder browse dialog not showing folders
Posted
by subash
on Stack Overflow
See other posts from Stack Overflow
or by subash
Published on 2010-04-20T04:39:12Z
Indexed on
2010/04/20
4:43 UTC
Read the original article
Hit count: 357
folderbrowserdialog
I have created an application compiled with .NET 3.5. and used the FolderBrowserDialog object. When a button is pressed i execute this code:
FolderBrowserDialog fbd = new FolderBrowserDialog (); fbd.ShowDialog();
A Folder dialog is showed but i can't see any folders. The only thing i see are the buttons OK & Cancel (and create new folder button when the ShowNewFolderButton properyty is set to true). When i try the exact same code on a different form everything is working fine. Any ideas??
© Stack Overflow or respective owner