Save the name of open file in tabpage using c#.net
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
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