I have a number of forms in my application.
A few of them display a pop up form which is similar to a browse file dialog. How can I return the folder path selected by the user back to the previous form?
BrowseTree bTree = new BrowseTree(connection); bTree.StartPosition = FormStartPosition.CenterParent; DialogResult dialogResult = bTree.ShowDialog(); The ShowDialog() shows the form. I can't figure out how to access the folder path selected within this BrowseTree form in the current form.
Please help.