I want to prompt the user for a folder, but allow them the possibility of pasting in a path. The FolderBrowswerDialog doesn't seem to support this. I thought about using an OpenFileDialog, but that requires the user to select a file, which I don't want - though it does allow a user to type or paste in a path.
How can I have the user select a folder, but also allow them to type or paste in a path (to the folder)?
What you can do is making a form with a textbox and folderbrowsedialog. Then the user can either paste or type in the folder address (Then you have to validate it) or just use the folderbrowsedialog in it.
Then just show this form as a dialog whenever user wants to use it.