M
MAF
Does anyone know how to set a specific path for the FolderBrowser object?
here is my existing code.
private FolderBrowserDialog m_fb = new FolderBrowserDialog();
private DialogResult RunDialog()
{
m_fb.Description = m_description;
if (startUpPath == null)
{
m_fb.s.StartLocation = FolderBrowserFolder.Desktop;
}
else
{
//Set Startup path????
}
return m_fb.ShowDialog();
}
here is my existing code.
private FolderBrowserDialog m_fb = new FolderBrowserDialog();
private DialogResult RunDialog()
{
m_fb.Description = m_description;
if (startUpPath == null)
{
m_fb.s.StartLocation = FolderBrowserFolder.Desktop;
}
else
{
//Set Startup path????
}
return m_fb.ShowDialog();
}