How to use open file dialog for open a any file in csharp application

Today i tell how to use open file dialog in our application to open a text file ……

 before you use openfiledialog in your application you put button and text boxYou right following code in button click event.. OpenFileDialog OS = new OpenFileDialog();
           OS.ShowDialog();

           FileStream fs = new FileStream(OS.FileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
           StreamReader sr = new StreamReader(fs);
           sr.BaseStream.Seek(0, SeekOrigin.Begin);
           textBox1.Text = sr.ReadToEnd();
           sr.Close();
           fs.Close();

spot_img

Related Articles

INDIAN ECONOMY

MCQ ON INDIAN ECONOMY
Read more
1. Why are coal companies moving towards outsourcing mode?A) To increase employment opportunitiesB) To reduce costs and become more competitiveC)...
MCQ Question on Annuity Policy of CIL 1. What is the primary purpose of the CIL Annuity Scheme, 2020?A)...