From 7974345709c1750d27403616ff61e76bdea68665 Mon Sep 17 00:00:00 2001 From: ivanjrt Date: Tue, 12 Dec 2023 22:45:54 -0600 Subject: [PATCH] adding version and better possible error identifiers --- MainWindow.xaml.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs index 4f61f97..8522a77 100644 --- a/MainWindow.xaml.cs +++ b/MainWindow.xaml.cs @@ -191,6 +191,7 @@ private void ResultListView_MouseDoubleClick(object sender, MouseButtonEventArgs catch (Exception ex) { MessageBox.Show($"Error opening file with Notepad: {ex.Message}", "Error", MessageBoxButton.OK, MessageBoxImage.Error); + MessageBox.Show($"Error code 002", "Error", MessageBoxButton.OK, MessageBoxImage.Error); } } } @@ -211,7 +212,7 @@ private void SearchTextBox_TextChanged(object sender, TextChangedEventArgs e) private void About_Click(object sender, RoutedEventArgs e) { - MessageBox.Show("Build 5.0" + + MessageBox.Show("Build 5.5" + "\n\nThis App will search keywords within log, txt, reg, html, json, and .xml files\nThis App will convert evtx files to xml for better handling" + "\n\nThe author assumes no responsibility or liability for any errors using this App", "About", MessageBoxButton.OK, MessageBoxImage.Information); }