using form=System.Windows.Forms; using (form.FolderBrowserDialog dlg = new form.FolderBrowserDialog()) { form.DialogResult result = dlg.ShowDialog(); if (result == form.DialogResult.OK) { this.txtPath.Text = dlg.SelectedPath; } }
Blessy Baby Digitalmesh Softech pvt Ltd https://blessybaby.wordpress.com/
Login to post response