|
-
January 25th, 2000, 05:20 PM
#1
Array is uninitialized
How do I check if an array is dimmed but empty?
-
January 25th, 2000, 10:54 PM
#2
Re: Array is uninitialized
Try this:
private Function IsInitialized(aArray as Variant) as Boolean
on error GoTo Uninitialized
IsInitialized = UBound(aArray)
Uninitialized:
End Function
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|