Digicust Bugfix

This commit is contained in:
2023-11-08 16:32:25 +01:00
parent 1e2a884a23
commit c57f93ee75

View File

@@ -436,13 +436,13 @@ Public Class frmDigicust
End If
If txtVorpapierT.Text > 2 Then
If txtVorpapierT.TextLength > 2 Then
lblInfo.Text = "Vopapier-Code zu lang (max 2 Stellen)."
txtVorpapierT.Focus()
Return False
End If
If txtVorpapier.Text > 30 Then
If txtVorpapier.TextLength > 30 Then
lblInfo.Text = "Vopapier zu lang (max 30 Stellen)."
txtVorpapier.Focus()
Return False