M
M Shafaat
Hi!
In VBA, how can I check if an array is declaired with a dimension?
Example:
Dim MyArray() As String
No one of the following works:
IsEmpty(MyArray) Then
Not IsNull(MyArray) Then
MyArray Is Nothing Then
Best regards
M Shafaat
In VBA, how can I check if an array is declaired with a dimension?
Example:
Dim MyArray() As String
No one of the following works:
IsEmpty(MyArray) Then
Not IsNull(MyArray) Then
MyArray Is Nothing Then
Best regards
M Shafaat