This commit is contained in:
2022-03-21 10:17:42 +01:00
parent 39911e313e
commit e3843466c8
28 changed files with 4460 additions and 608 deletions

View File

@@ -3,10 +3,13 @@ Public Class cVERAG_InterfaceSharedObjects
Property FTP_Path As String = ""
Property CooName As String = ""
Property toSystem As String = "" ' Wo tatsächlcih hingeschikt wird, auch bei TOBB ist dieser Wert "VERAG", wenn eine Kopie an VERAG gesendet werden soll...
Sub New(FTP_Path, CooName)
Sub New(FTP_Path, CooName, Optional toSystem = Nothing)
Me.FTP_Path = FTP_Path
Me.CooName = CooName
Me.toSystem = If(toSystem, CooName) 'Default ist toSystem
End Sub
End Class