Initial commit

This commit is contained in:
2021-04-20 07:59:36 +02:00
commit fb0247c874
21969 changed files with 11640044 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
Public Class clsJournal
Public RunJournal As String = ""
Public UebernahmeJournal As String = ""
Public Sub Insert_RunJOurnal(ByVal s As String)
If RunJournal <> "" Then RunJournal = RunJournal + vbCrLf
RunJournal = RunJournal + Now.ToString + " " + s
End Sub
Public Sub Insert_Uebernahmejournal(s As String)
If UebernahmeJournal <> "" Then UebernahmeJournal = UebernahmeJournal + vbCrLf
UebernahmeJournal = UebernahmeJournal + s
End Sub
Public Sub Init()
Me.RunJournal = ""
Me.UebernahmeJournal = ""
End Sub
End Class