MS18042016

This commit is contained in:
SchreiberM
2016-04-19 08:29:57 +02:00
parent b0a74d2e94
commit 034718d22e
37 changed files with 4334 additions and 1746 deletions

View File

@@ -32,7 +32,7 @@ Public Class frmLicense
'MsgBox("Die Lizenzen wurden erfolgreich aktualisiert!", MsgBoxStyle.Exclamation, "Erfolgsmeldung:")
End If
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler bei New Licenses:")
MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected error in New Licenses:")
End Try
End Sub
Sub Refresh_Licence(Neu As Boolean)
@@ -75,7 +75,7 @@ Public Class frmLicense
End If
End If
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Fehler bei Licensemanager:")
MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Unexpected error in Licensemanager:")
End Try
End Sub
@@ -86,7 +86,7 @@ Public Class frmLicense
Me.txtPW.Visible = True
Me.btnPW_check.Visible = True
Catch ex As Exception
MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Fehler bei Formular Load:")
MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Unexpected error in Formular Load:")
End Try
End Sub
End Class