Click here to Skip to main content
Sign Up to vote bad
good
See more: C#
Hey
 
I want to know how to build OpenFileLocation button.
I mean , after I select browse , ofd shows up. I select the .exe or whatever , then it prints to textbox1.text
OpenFileDialog ofd = new OpenFileDialog();
            
            
            if (ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                this.textBox1.Text = ofd.FileName;
                
            }
and I created this
Process.Start(textbox1.Text)
but , I want to create a button to open the folder which locates the exe i selected from the browse button.
Like , Open file location button
I tried this
if (ofd.ShowDialog() == DialogResult.OK)
            {
                textBox1.Text = OpenFileDialog;
            }
But , it didnt worked.
Posted 28-Nov-12 9:52am

Comments
Tamer Hatoum - 28-Nov-12 16:00pm
if you mean that you want to locate an .exe file then you want to start the chosen app. then you have to start the process by the file path not only the file name.

1 solution

Use the FolderBrowserDialog class
 

if (ofd.ShowDialog() == DialogResult.OK)
{
   FolderBrowserDialog dialog = new FolderBrowserDialog();
   dialog.SelectedPath = Path.GetDirectoryName(ofd.FileName);
   dialog.ShowDialog();
   textBox1.Text = dialog.SelectedPath;
}
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 6,959
1 Prasad_Kulkarni 3,671
2 OriginalGriff 3,359
3 _Amy 3,332
4 CPallini 2,925


Advertise | Privacy | Mobile
Web01 | 2.6.130617.1 | Last Updated 28 Nov 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid