Änderungen an Fehlersystem

This commit is contained in:
ja
2021-11-03 09:00:21 +01:00
parent 9b0da824f5
commit 7b461cf797
6 changed files with 64 additions and 15 deletions

View File

@@ -0,0 +1,14 @@
Imports Microsoft.VisualBasic
Public Class VERAG_VARIABLES
Public Shared errornumb As Integer = 0
Shared Sub initerrorcount()
errornumb = 0
End Sub
Shared Sub seterrorcount(var As Integer)
errornumb += 1
End Sub
Shared Function geterrornumb() As String
Return "Error:" + Space(1) + VERAG_PROG_ALLGEMEIN.cCryptography3.Encrypt(errornumb.ToString)
End Function
End Class