LKWNr Prfung, ustva, etc.

This commit is contained in:
2026-02-18 17:22:35 +01:00
parent 4dad6898e9
commit 4e74b016a7
4 changed files with 79 additions and 46 deletions

View File

@@ -938,6 +938,31 @@ BindingFlags.Instance Or BindingFlags.NonPublic, Nothing, [Control], New Object(
End Function
Shared Function checkLKWNr(lkwNr As String) As List(Of String)
Dim ListOfLKWNr As New List(Of String)
If String.IsNullOrWhiteSpace(lkwNr) Then Return ListOfLKWNr
Dim listOfLkwNrTemp = lkwNr.Split("/"c)
For Each oneLKWNr In listOfLkwNrTemp
Dim e = oneLKWNr.Trim()
If e = "" Then Continue For
Try
ListOfLKWNr.Add(oneLKWNr)
Catch
End Try
Next
Return ListOfLKWNr
End Function
Public Function MakeScreenshot()