I'm currently trying to have it display another message only if an Exception isn't caught when using Try Catch. Right now it'll display an exception, and then my message after that. So I was just asking for some tips on how I could go about doing that.
Here's my code.
try { } catch (Exception ex) { MessageBox.Show(ex.Message); } finally { MessageBox.Show("Solution Downloaded in C:/dwnload/working"); }
try?