folderbrowserdialog Questions
5
Solved
I'm curious and it could give my little app a nice finishing touch. Thanks!
Mckeon asked 19/8, 2009 at 2:28
16
As show in this screen shot, the selected folder is not in the view. It needs to be scrolled down to view the selected folder.
Same dialog shows selected folder visible on different computer
...
Ixia asked 4/8, 2011 at 13:19
5
Solved
How do i Set the root folder for a folderdialog?
My sample does not seem to work. (I checked that the folder exists)
Dim FolderBrowserDialog1 As New FolderBrowserDialog
FolderBrowserDialog1.Ro...
Granddaughter asked 3/9, 2015 at 8:22
3
The dialog will return incorrect SelectedPath when:
Once shown, click the New Folder button
Type in some name for the new folder
Click OK, **without pressing ente
Code used:
FolderBrowserDial...
Swineherd asked 11/4, 2016 at 6:57
9
Solved
Hey there i started learning C# a few days ago and I'm trying to make a program that copies and pastes files (and replaces if needed) to a selected directory but I don't know how to get the directo...
Lizzettelizzie asked 27/6, 2014 at 10:48
12
Solved
I develop a WPF4 application and in my app I need to let the user select a folder where the application will store something (files, generated reports etc.).
My requirements:
Ability to see the st...
Gideon asked 24/10, 2010 at 10:36
3
Solved
I'm migrating my WPF desktop app from .NET Framework to Core 3.0.
I was using System.Windows.Forms.FolderBrowserDialog() and I'm now stuck on how to add this reference to the Core project. There is...
Givens asked 13/11, 2019 at 20:5
2
Solved
I need to upload all files from a folder to server.
I'm trying to implement Select Directory window, and not Select file.
The normal way like:
<input type="file" webkitdirectory directory/>...
Footplate asked 2/8, 2019 at 10:5
7
Solved
I'm getting the following Exception when trying to use FolderBrowserDialog:
System.Threading.ThreadStateException: Current thread must be set to single thread apartment (STA) mode before OLE calls ...
Gregggreggory asked 28/7, 2011 at 13:57
3
Please note it is not a duplicate question.
How to show a detailed FolderBrowser as in the image below from a PropertyGrid (from the field/property which has ellipses ...)
Using
[EditorAttribut...
Archaeozoic asked 12/3, 2013 at 18:5
6
Solved
I'm trying to use the FolderBrowserDialog from my WPF application - nothing fancy. I don't much care that it has the Windows Forms look to it.
I found a question with a suitable answer (How to use...
Bartholemy asked 5/9, 2012 at 20:16
4
Solved
Is there an alternative for selecting folders in C#?
Optimally I'd like to use the OpenFileDialog to select folders, or at least something similar to that.
Rupp asked 17/9, 2012 at 14:6
4
I have this WPF app and I want to have there function of getting a directory path from the user. I would like to use some folder browser dialog but I don't want to implement it from System.Windows....
Pistil asked 30/4, 2013 at 16:17
4
Solved
First time I'm implementing a FolderBrowserDialog in WPF and I'm not loving it one bit...
Aside from the issues I had figuring out that Windows.Forms wasn't referenced in my project, now I'm havin...
Shamrao asked 11/2, 2013 at 13:58
2
Solved
I have a textBox which gets filled with a path, acquired from a database (but that's irrelevant). So I want to have a FolderBrowserDialog button where I open -> navigate through the folders and sel...
Lisalisabet asked 16/4, 2013 at 12:16
2
Solved
I have this code:
string directory;
FolderBrowserDialog fbd = new FolderBrowserDialog();
if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
directory = fbd.SelectedPath;
txtSou...
Charleton asked 30/6, 2016 at 12:31
1
Solved
I am trying to finish my static Prompt class to be able to call it from anywhere. But the problem is couldn't make the dialog show. I am already using [STAThread] and here is my code.
public stati...
Havener asked 7/9, 2015 at 9:11
4
Solved
Is there any way to open a folder browser dialog in Qt? When I use QFileDialog with Directory file mode, even if I specify the ShowDirsOnly option, I get the standard file dialog. I would prefer to...
Chamfer asked 8/11, 2012 at 22:50
3
Solved
how i can show textbox in FolderBrowserDialog like below image,
Married asked 18/2, 2013 at 0:23
1
Solved
I am currently writing an Folder Browser Dialog in WPF. For displaying the Tree I use an TreeView:
<TreeView Name="FolderView" ItemsSource="{Binding DataTrees}" Grid.Row="0">
<TreeView.I...
Skep asked 23/9, 2014 at 8:19
2
Solved
Sometimes I close folder/package in Project Tool Window and then I should click every folder in it to open them . How to avoid this and open all folders/packages quickly?
Husk asked 6/2, 2014 at 11:17
1
I'm not sure what to google here in order to explain what I wish to do, so I'll try here:
I'm using both OpenFileDialog and FolderBrowserDialog in my code for browsing for files and directori...
Corespondent asked 4/2, 2013 at 8:11
3
I'm supporting an old version of a C# application, running on .NET 3.5. We've found an issue with the FolderBrowserDialog on Windows Vista (either 32 or 64-bit).
Basically what happened is that th...
Woolly asked 2/4, 2012 at 8:27
1
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 roo...
Cecilycecity asked 18/10, 2012 at 3:9
1
Solved
It seems that I really am not good with multithreaded applications. I am trying to open a FolderBrowserDialog, but I was getting an exception telling me:
Current thread must be set to single threa...
Teillo asked 2/8, 2011 at 18:58
1 Next >
© 2022 - 2024 — McMap. All rights reserved.