Is there any way to set the initial directory of a folder browser dialog to a non-special folder? This is what I\'m currently using
fdbLocation.RootFolder = Envir
In my case, it was an accidental double escaping.
this works:
SelectedPath = @"C:\Program Files\My Company\My product";
this doesn't:
SelectedPath = @"C:\\Program Files\\My Company\\My product";