dakosy, etc.

This commit is contained in:
2026-06-10 08:16:40 +02:00
parent 14fd7c2f69
commit 67965acfea
8 changed files with 245 additions and 17 deletions

View File

@@ -772,6 +772,16 @@ Public Class cGetMsgType
End If
Return False
End Function
Shared Function isPLOSE_NewFormat_TR(doc As String) As Boolean
Dim lines() As String = System.IO.File.ReadAllLines(doc)
If lines.Count > 0 Then
If lines(0).ToString.Replace("""", "").StartsWith("CustomerCode") Then
Return True
End If
End If
Return False
End Function
Shared Function isPLOSE_Header(doc As String) As Boolean
Dim lines() As String = System.IO.File.ReadAllLines(doc)
If lines.Count > 0 Then