I want to design a program contain browse button, where we can browse to the selected folder and open the file inside the folder.
I need a reference and reading wher
From toolbox drag a FolderBrowserDialog component to your form and name it folderBrowserDialog. In your browse button event handler write following code.
private void btnBrowseBackupLocation_Click(object sender, EventArgs e)
{
DialogResult result = folderBrowserDialog.ShowDialog();
if (result == DialogResult.OK)
{
txtboxBackupLocation.Text = folderBrowserDialog.SelectedPath;
}
}