I am trying to take a directory and create a new directory in TEMP, that contains all the files in the original directory, but not create additional sub-directories.
Here is what I have so…
I found all the code I need to make SHBrowseForFolder work in my application. But I hate that it forces you to do everything in the little folder window, without a text box to navigate by typing.
In Windows, I know I commonly see a different folder…
I am working on a wpf application. Here I need to use System.Windows.Forms.FolderBrowserDialog in my Wpf application.
System.Windows.Forms.FolderBrowserDialog openFolderBrowser = new System.Windows.Forms.FolderBrowserDialog();
…
I would like to use a Folder Browse Dialog for WPF, but there does not seem to be such an essential class for WPF.
Some recommend to use System.Windows.Forms.FolderBrowserDialog but this is a really awful dialog.
I tried…
FolderBrowserDialog.RootFolder Property is restricted to only special folder defined in the Environment.SpecialFolder enumerator. However in my applciation, we need to show this dialog, but the root path needs to be configurable, and is normally a…
I currently have a CFolderDialog class that is used in my CDocManagerEx class for handling file operations as follows:
alt text http://img268.yfrog.com/img268/9271/filedialog.png
I don't know if I need to show the method implementation of this class…
im opening a FolderBrowserDialog the following way:
FolderBrowserDialog fbd = new FolderBrowserDialog();
fbd.Description = desc;
fbd.SelectedPath = defaultPath;
fbd.ShowNewFolderButton = showNewFolderButton;
…
I want to achieve something like the following:
Where I can select multiple folders across multiple drives and retrieve the folder paths of those selected. Qt only has a crude multi-folder selection feature, but it does not support selected…
I tried to show folderbrowserdialog in wpf but I got this exception
Current thread must be set to single
thread apartment (STA) mode before OLE
calls can be made. Ensure that your
Main function has STAThreadAttribute
marked on it. This…
We want to prevent the user from doing anything except selecting a folder. We don't want to allow him to delete files/folders, rename them, access the context menu, etc. But we can't override anything since FolderBrowserDialog is sealed.
We googled…
I want to show a dialog (like as OpenFileDialog) to browse for folders and also the files. My windows-forms app is to auto-rename image files in a folder (and optionally all sub folders in it). When user want to select the path, he or she may choose…
I've tried using the FolderBrowserDialog and that seems to work on my development machine. However, this is not supported on a Windows 2008 R2 Server Core. I tried running this code anyway - the dialog appears, but the main display pane is not…
Im trying to use the FolderBrowserDialog to select a folder in C#. At first I got a Thread exception, so I googled what was wrong and fixed that but now im stuck at a nother problem. I whant to know when a folder has been selected.
This is what i'v…
I have a winform with a FolderBrowserDialog to choose a folder from a network drive. The issue is that it returns the drive letter (X:\Folder...) rather than the network path (\\Network\Projects\Folder...). How can I get the network path?