So basically I am creating a application to where I want to insert an excel sheet inside of the folder path provided.
Here is my Code:
private void BSave_Click(object sender, EventArgs e)
{
FolderBrowserDialog ofd = new FolderBrowserDialog();
if (ofd.ShowDialog() == DialogResult.OK)
{
TextOutputFile.Text = ofd.SelectedPath;
}
}