Improve Base Form Properties, Improve PanelManager

This commit is contained in:
Jonathan Jenne
2019-03-11 14:49:48 +01:00
parent e7e6d73411
commit 896426da3b
15 changed files with 145 additions and 61 deletions

View File

@@ -32,7 +32,7 @@ Public Class frmObjectEditor
}
If _Datatable Is Nothing Then
_ErrorHandler.ShowErrorMessage(New ArgumentNullException("Datatable is empty"))
ShowErrorMessage(New ArgumentNullException("Datatable is empty"))
End If
End Sub
@@ -54,7 +54,7 @@ Public Class frmObjectEditor
Await LoadLanguageTableAsync(My.Application.User.Language)
LoadDetailForm()
Catch ex As Exception
_ErrorHandler.ShowErrorMessage(ex)
ShowErrorMessage(ex)
End Try
End Sub
@@ -110,7 +110,7 @@ Public Class frmObjectEditor
Await My.Channel.CloseDatabaseRequestAsync()
Catch ex As Exception
_ErrorHandler.ShowErrorMessage(ex)
ShowErrorMessage(ex)
End Try
End Function