Zooflow: WIP globix

This commit is contained in:
Jonathan Jenne
2021-12-09 13:31:36 +01:00
parent 42db951c93
commit 39483efe4d
3 changed files with 9 additions and 12 deletions

View File

@@ -10,7 +10,7 @@ Public Class ClassHelpers
Public Function GetValueFromDatatable(pDatatable As DataTable, pFilterString As String, pCheckColumn As String, pSortString As String) As Object
Try
If pDatatable.Rows.Count = 0 Then
If pDatatable Is Nothing OrElse pDatatable.Rows.Count = 0 Then
Return Nothing
End If