2 Commits

Author SHA1 Message Date
Jonathan Jenne
83023ac390 Common: Version 2.4.2 2022-11-03 14:37:21 +01:00
Jonathan Jenne
5a6299b116 Common: fix label for frmNotification_Startup 2022-11-03 14:37:03 +01:00
3 changed files with 8 additions and 8 deletions

View File

@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben: ' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")> ' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("2.4.1.0")> <Assembly: AssemblyVersion("2.4.2.0")>
<Assembly: AssemblyFileVersion("2.4.1.0")> <Assembly: AssemblyFileVersion("2.4.2.0")>

View File

@@ -301,7 +301,7 @@
<value>1050, 654</value> <value>1050, 654</value>
</data> </data>
<data name="$this.Text" xml:space="preserve"> <data name="$this.Text" xml:space="preserve">
<value>frmNotification_Startup2</value> <value>frmNotification_Startup</value>
</data> </data>
<data name="&gt;&gt;btnCloseForm.Name" xml:space="preserve"> <data name="&gt;&gt;btnCloseForm.Name" xml:space="preserve">
<value>btnCloseForm</value> <value>btnCloseForm</value>

View File

@@ -61,7 +61,10 @@ Public Class frmNotification_Startup
DocumentViewer1.Init(LogConfig, _GDPictureKey) DocumentViewer1.Init(LogConfig, _GDPictureKey)
OperationMode = GetOperationMode() OperationMode = GetOperationMode()
Client = _Environment.Service.Client Client = _Environment.Service.Client
Me.Text = _FormCaption
Text = _FormCaption
lbStatus.Caption = ""
If _NotificationsTable.Rows.Count = 1 Then If _NotificationsTable.Rows.Count = 1 Then
Me.ListBoxControl1.Visible = False Me.ListBoxControl1.Visible = False
Load_Profile(_NotificationsTable.Rows(0).Item(COL_GUID)) Load_Profile(_NotificationsTable.Rows(0).Item(COL_GUID))
@@ -72,9 +75,6 @@ Public Class frmNotification_Startup
ListBoxControl1.DisplayMember = COL_TITLE ListBoxControl1.DisplayMember = COL_TITLE
End If End If
Catch ex As Exception Catch ex As Exception
'Dim oMsgBox As New frmDialog(ex.Message, "Unexpected Error loading form:", frmDialog.DialogType.Error)
'oMsgBox.ShowDialog()
FormHelper.ShowErrorMessage(ex.Message, "Unexpected error loading form") FormHelper.ShowErrorMessage(ex.Message, "Unexpected error loading form")
End Try End Try
End Sub End Sub