How to Use OpenFileDialog in C#

In this tutorial, I’m going to teach you how to use OpenFileDialog in C#. This kind of method allows you to browse and select files on your computer in a form of a windows dialog box. After choosing a file and selects OK, the file that you have chosen will display its contents in the form’s text box.

Creating Application

Step 1

Open Microsoft Visual Studio 2015 and create a new windows form application for c#. ps1

Step 2

Add a Richtexbox,TextBox, button and a OpenfileDialog into the form. Do the form just like shown below. ps2

Step 3

Press F7 to open the code editor. In the code editor, create a method to open the windows dialog box and select a file to display it inside the richtextbox.
  1.    
  2.         private void Open_File()
  3.         {
  4.                
  5.             //    'CHECK THE SELECTED FILE IF IT EXIST OTHERWISE THE DIALOG BOX WILL DISPLAY A WARNING.
  6.             openFileDialog1.CheckFileExists = true;
  7.  
  8.  
  9.             //    'CHECK THE SELECTED PATH IF IT EXIST OTHERWISE THE DIALOG BOX WILL DISPLAY A WARNING.
  10.             openFileDialog1.CheckPathExists = true;
  11.  
  12.  
  13.             //    'GET AND SET THE DEFAULT EXTENSION
  14.             openFileDialog1.DefaultExt = "txt";
  15.  
  16.  
  17.             //    'RETURN THE FILE LINKED TO THE LNK FILE
  18.             openFileDialog1.DereferenceLinks = true;
  19.  
  20.             //    'SET THE FILE NAME TO EMPTY
  21.             openFileDialog1.FileName = "";
  22.  
  23.             //    'FILTERING THE FILES
  24.             openFileDialog1.Filter = "Text files (*.txt)|*.txt|All files|*.*";
  25.  
  26.             //    'SET THIS FOR ONE FILE SELECTION ONLY.
  27.             openFileDialog1.Multiselect = false;
  28.  
  29.  
  30.  
  31.             //    'SET THIS TO PUT THE CURRENT FOLDER BACK TO WHERE IT HAS STARTED.
  32.             openFileDialog1.RestoreDirectory = true;
  33.  
  34.             //    'SET THE TITLE OF THE DIALOG BOX.
  35.             openFileDialog1.Title = "Select a file to open";
  36.  
  37.             //    'ACCEPT ONLY THE VALID WIN32 FILE NAMES.
  38.             openFileDialog1.ValidateNames = true;
  39.  
  40.             if (openFileDialog1.ShowDialog() == DialogResult.OK)
  41.             {
  42.                 richTextBox1.Text = System.IO.File.ReadAllText(openFileDialog1.FileName);
  43.                 textBox1.Text = openFileDialog1.FileName;
  44.             }
  45.         }

Step 4

Write the following code to execute the method that you have created when the button is clicked.
  1.    
  2.         private void button1_Click(object sender, EventArgs e)
  3.         {
  4.             Open_File();
  5.         }
For any questions about this article. You can contact me @ Email – [email protected] Mobile No. – 09305235027 – TNT Or feel free to comment below.

Comments

good

Add new comment