Skip to content

Commit

Permalink
adding version and better possible error identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanjrt committed Dec 13, 2023
1 parent 9382e82 commit 7974345
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
}
Expand All @@ -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);
}
Expand Down

0 comments on commit 7974345

Please sign in to comment.