Questions tagged [folderbrowserdialog]

FolderBrowserDialog is a class in the System.Windows.Forms.CommonDialog namespace

Prompts the user to select a folder.

Docs

280 questions
1
vote
2 answers

Saving the user input as variable in c# windows form

So far if a user inputs something, I store in a label property. I know this can't be right. How can I update a variable based on user input for use across whichever event needs to use it? This is one of many things I've tried. I can't even figure…
Altimus Prime
  • 2,207
  • 2
  • 27
  • 46
1
vote
1 answer

Folder chooser on Windows

How can I call the folder default windows folder chooser. I'm using the call: QString path = QFileDialog::getExistingDirectory(parent, "", folder, QFileDialog::ShowDirsOnly); But this call show the dialog below: How can I choose this dialog as…
Victor
  • 8,309
  • 14
  • 80
  • 129
1
vote
1 answer

Load filenames without extension to CheckedListBox

I have a checkedListBox; wich loads files inside a folder; to run/open when checked. What I'm trying to achieve is to: - Load filenames without extension into the CheckedListBox. I can retrieve: "C:\Folder1\anotherfolder\myfile1.txt" but; i just…
user2225495
1
vote
1 answer

how to use the browse folder dialog in console application

I created a program that monitors what happens to the files inside a directory. For example if I add a new file, it shows the path and the name of the new file. Though I coded it in Windows Forms, I want to change it to a Console Application so that…
crystalclear
  • 129
  • 1
  • 3
  • 11
1
vote
0 answers

Folderbrowserdialog browsing a remote pc

I have a question regarding folderbrowser when i browse to a remote computer nothing is showing under that object. But if i use fileopen and browse to the same location it lists all the folders and files, is there some sort of authenication…
Kevin Babb
  • 111
  • 1
  • 2
  • 13
1
vote
0 answers

FolderBrowserDialog is closing my C# application automatically

I am developing my C# application in Visual C# Express 2010 and when i was opening the FolderBrowserDialog, it was opened fine and also i could able to get the folder name and files. The same application (also i didn't changed any single line of…
Pon
  • 315
  • 1
  • 5
  • 10
1
vote
3 answers

FolderBrowserDialog not recognised

Cannot get wpf project to reconise FolderBrowserDialog using System.Windows.Forms.Integration; using System.Windows.Forms; private void Button_Click_1(object sender, RoutedEventArgs e) { FolderBrowserDialog browse = new…
Jed I
  • 998
  • 3
  • 19
  • 37
1
vote
1 answer

vb.net browse for folder description space is not enough

I am using the FolderBrowserDialog to allow the user to choose a folder where to store files. I am also using the description property to give the user tips as to where to ideally place such a folder. However, the space for the description text only…
Osprey
  • 1,523
  • 8
  • 27
  • 44
1
vote
1 answer

Using xcopy in VBS (With a Twist)

Okay, so here's the deal: I'm trying to put together a script that will perform a simple xcopy. The problem is I want the users to be able to browse for the source and destination folders. I've got a couple simple parts, but I've been unable to…
Casey Reynolds
  • 15
  • 1
  • 1
  • 3
1
vote
0 answers

Select Mapped Devices with FolderBrowserDialog using Mono

Is there any way to allow FolderBrowserDialog to show up other devices or mapped drives in OSX? I Have a network mapped directory and it doesn't appear in the list.
Teoni Valois
  • 166
  • 4
  • 3
1
vote
1 answer

How to update a TextBox from a FolderBrowserDialog

I'm trying to use a FolderBrowserDialog in my WPF applciation to dictate source and destination folder paths. Currently, I have a bit of a hack as my solution: // Opens the FolderBrowserDialog and gets the result. var dialog = new…
kck
  • 609
  • 1
  • 7
  • 13
1
vote
1 answer

Apply xaml style for FolderBrowserDialog in WPF

I have a style Xaml which I use for styling my WPF windows. But the same style won't get applied for the FolderBrowseDialog which I use in my windows. This gives a weird UI difference between the actual windows and the dialog pop-ups. How to get…
Sandeep
  • 5,581
  • 10
  • 42
  • 62
0
votes
1 answer

Error after displaying a FolderBrowserDialog

I'm working a backup program and to determine the destination location, I give them the choice to type it in, or browse to it. Lately, I've been getting this error after they browse to it using the FolderBrowserDialog to set the location and the…
JFV
  • 1,803
  • 6
  • 24
  • 38
0
votes
2 answers

Embed FolderBrowserDialog into Form

How can I embed the FolderBrowserDialog into my "form1"? I don't want a popup dialog, how can I achieve this?
Alex
  • 207
  • 1
  • 2
  • 11
0
votes
2 answers

How can I make this control (may a kind of FolderBrowser)

As you can see in the picture below, this looks like a file dialog and folder browser. This dialog can select only folder(not file). Is this a custom control? If so, then please give me advice on how to make it. This is a Winforms application.
Sungguk Lim
  • 6,109
  • 7
  • 43
  • 63