From c61eead2ba7441048176210bf5b666d8c45c1a75 Mon Sep 17 00:00:00 2001 From: gjefferyes Date: Wed, 16 Sep 2015 20:18:21 -0500 Subject: [PATCH] #16 Changed SelectedPath = @"apps" to SelectedPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"Reports") --- ROMVault2/Report.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ROMVault2/Report.cs b/ROMVault2/Report.cs index cb2b916..afe1300 100644 --- a/ROMVault2/Report.cs +++ b/ROMVault2/Report.cs @@ -40,8 +40,8 @@ namespace ROMVault2 { ShowNewFolderButton = true, Description = @"Please select a folder for Dats", - RootFolder = Environment.SpecialFolder.MyComputer , - SelectedPath = @"apps" + RootFolder = Environment.SpecialFolder.MyComputer, + SelectedPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"Reports") }; if (browse.ShowDialog() != DialogResult.OK) return; @@ -195,7 +195,7 @@ namespace ROMVault2 SaveFileDialog saveFileDialog1 = new SaveFileDialog { Title = @"Generate Full Report", - FileName = @"RVFullReport"+CleanTime()+".txt", + FileName = @"RVFullReport" + CleanTime() + ".txt", Filter = @"Rom Vault Report (*.txt)|*.txt|All Files (*.*)|*.*", FilterIndex = 1 }; @@ -226,7 +226,7 @@ namespace ROMVault2 SaveFileDialog saveFileDialog1 = new SaveFileDialog { Title = @"Generate Fix Report", - FileName = @"RVFixReport"+CleanTime()+".txt", + FileName = @"RVFixReport" + CleanTime() + ".txt", Filter = @"Rom Vault Fixing Report (*.txt)|*.txt|All Files (*.*)|*.*", FilterIndex = 1 };