fix MASSIVE potential slowdown when loading frmValidator

This commit is contained in:
Jonathan Jenne 2023-06-07 09:45:27 +02:00
parent e44a42faea
commit a2b051401b

View File

@ -1067,7 +1067,9 @@ Public Class ClassControlCreator
Dim oValue = oRow2.Item(0) Dim oValue = oRow2.Item(0)
Try Try
oValue &= $" | {oRow2.Item(1)}" If oRow2.ItemArray.Length > 1 Then
oValue &= $" | {oRow2.Item(1)}"
End If
Catch ex As Exception Catch ex As Exception
End Try End Try