FolderBrowserDialog openfolderdialog1 = new FolderBrowserDialog();
openfolderdialog1.SelectedPath = "..\\..\\Gambar Train\\";
if (openfolderdialog1.ShowDialog() == DialogResult.OK)
{
textBox1.Text = openfolderdialog1.SelectedPath;
}
It is not working. Do you have solution for this ? i want to use "..\.." cause the folder location is not fixed.