Hi,
I declared a variable as dictionary. Wonder if there is a way to check if anything been added to the dictionary.
I have the following code but it says that the dictionary is NOT EMPTY.
Thank you!
I declared a variable as dictionary. Wonder if there is a way to check if anything been added to the dictionary.
I have the following code but it says that the dictionary is NOT EMPTY.
Code:
Sub store_Dict()
Dim Dict_curUpdate As New Dictionary
If Not Dict_curUpdate Is Nothing Then
Debug.Print "Dictionary contains something"
End If
End Sub
Thank you!