1
Answer

Save the name of open file in tabpage using c#.net

narayana prasad

narayana prasad

15y
4.3k
1

Im having mdi form and tabcontrol.our task is each and evry time  we click newpaeg means tabpage incremented with webbrowser control .but now we need is while open the file using openfiledialog ,the particular file name must be store in tabpage  while select the file and click ok button.
Answers (1)
0
Kirtan Patel

Kirtan Patel

NA 35k 2.8m 15y

Friend,

Here is code you need to change the TabPage Text

if my answer helps you then check "Do you like this answer" check box please :)


private void btnOpenFile_Click(object sender, EventArgs e)

        {

            OpenFileDialog ofd = new OpenFileDialog();

            if (ofd.ShowDialog() == DialogResult.OK)

            {

                //Set Tab  Text Same as Opened File

                tabControl1.TabPages[0].Text = ofd.FileName;

 

                string TextFileData = File.ReadAllText(ofd.FileName);

                richTextBox1.Text = TextFileData;

            }

        }






Accepted