I would like to extend the FolderBrowserDialog to have the option to include subfolders for selected Folder (add Checkbox to set to include or not). I found out that I can't extend the basic FolderBrowserDialog as it is a sealed class.
So I thought…
Everytime i run the program it has an error that says access to the path is denied. i already check the folder allowed all users, unchecked the read only and still it wont work
private void button2_Click(object sender, EventArgs e)
{
try
{
…
Hello I am using a System.Windows.Forms.FolderBrowserDialog in my WPF application to select folders in users computer. The selected folder is displayed in a TextBox and also is validated in the view model.
I am trying to display invalid folder Error…
i want create one simple windows form ,it just contain Editcontrol(textbox),Static Edit(label),Button (Name of Browse)..here i cannot implement browser control(to obtain filepath) in my form...i am using the the below path to create form..
visual…
I'm creating an Basic MSI installshield installer. And for choosing instllation path i'm calling FolderBrowserDialog. Everything works OK except FolderBrowserDialog appers in background. I would like to set it to be a foreground window. This code…
I am just trying to migrate some of my old apps from Win-forms to WPF. In my old win-form app I can send an array to a ListBox with the code below.
In my new WPF app, this will not populate the ListBox. What is weird is it does not error out, it…
I had made this code for user to select a folder so that my two files will be copied to that. The code is this:
string sourcePath = @"C:\Documents and Settings\akib\";
string fileName1 = @"untitled.jpg";
string fileName2 =…
I'm making a little file splitter-joiner, and I've already got the splitting process done. Now I need to complete the joiner.
I have this method:
public static void juntarArchivo(string[] Cortes, string CarpetaDestino)
{
string…
I have an application where user can choose between 2 languages.
Is to possible to change the FolderBrowserDialog language(Buttons, Browse for folder).
Maybe with CultureInfo?
Thank you for your help.
I need to show a folder dialog box so the user can select a path before my application runs. I have everything working fine but I can't seem to be able to keep the error MessageBox on the foreground. If the user selects the wrong path a message box…
So basically what I want is the user presses a browse button and a FolderBroswerDialog pops up. The user then selects a folder and the ViewList is then populated with all the images in that folder in Icon view. How can I do this? The code I…
I am writing an MVC3/Razor application and one of the requirements is for files to be generated and saved on the click of a button.
Generating the files and returning them to the browser as a FileResult is no problem, and for single files this is my…
Using a FolderBrowserDialog in a USB Drive takes several minutes to offer subfolders (independently of how many subfolders are there). Whereas Windows Explorer does show them in a relatively quick manner.
Code I'm using is:
if…
I'm using a folderBrowseDialog to give the user the ability to choose where the program is going to save some files. there is a problem that the user can choose path that the application can not manipulate, for instance "c:\" (the program is…