Changed
  SelectedPath = @"apps"
to
 SelectedPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"Reports")
This commit is contained in:
gjefferyes
2015-09-16 20:18:21 -05:00
parent 2d6c5a7e26
commit c61eead2ba

View File

@@ -41,7 +41,7 @@ namespace ROMVault2
ShowNewFolderButton = true,
Description = @"Please select a folder for Dats",
RootFolder = Environment.SpecialFolder.MyComputer,
SelectedPath = @"apps"
SelectedPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"Reports")
};
if (browse.ShowDialog() != DialogResult.OK) return;