FolderBrowserDialog

  • Thread starter Thread starter Pluto
  • Start date Start date
P

Pluto

Is it possible to open (ShowDialog) the FolderBrowserDialog in a specific
folder location?

Thanks.
 
Pluto,

If you set the SelectedPath property to the FolderBrowserDialog before
calling Show, it should select the path that is indicated by the property.

Hope this helps.
 
Is it possible to open (ShowDialog) the FolderBrowserDialog in a specific
folder location?

Set its SelectedPath property before showing the dialog.



Mattias
 
Great! Thanks Nicholas.


Nicholas Paldino said:
Pluto,

If you set the SelectedPath property to the FolderBrowserDialog before
calling Show, it should select the path that is indicated by the property.

Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- nick(dot)paldino=at=exisconsulting<dot>com

Pluto said:
Is it possible to open (ShowDialog) the FolderBrowserDialog in a specific
folder location?

Thanks.
 
Back
Top