FolderBrowserDialog dlg = new FolderBrowserDialog(); DialogResult res = dlg.ShowDialog(); if (res == DialogResult.OK) { txtReportsFolder.Text = dlg.SelectedPath; }
No comments:
Post a Comment