This commit is contained in:
2020-01-09 12:34:46 +01:00
parent e71a0bf9d5
commit 25b444528d
16 changed files with 834 additions and 336 deletions

View File

@@ -112,8 +112,8 @@ Public NotInheritable Class frmSplash
Private Sub bw_RunWorkerCompleted(sender As Object, e As System.ComponentModel.RunWorkerCompletedEventArgs)
' Bei Fehler MsgBox anzeigen und Programm beenden
If e.Error IsNot Nothing Then
LOGGER.Info("Unexpected error in Initializing application....")
MsgBox(e.Error.Message, MsgBoxStyle.Critical, "Unexpected error in Initializing application")
LOGGER.Error(e.Error)
MsgBox(e.Error.Message & vbNewLine & e.Error.StackTrace.ToString, MsgBoxStyle.Critical, "Unexpected error in Initializing application")
Application.Exit()
End If