Passing an undimensioned array to the VB6's Ubound function will cause an error, so I want to check if it has been dimensioned yet before attempting to check its upper bound. How do I do this?
|
I use this:
Usage:
Your code seems to do the same (testing for SAFEARRAY** being NULL), but in a way which I would consider a compiler bug :) |
|||||||||||||
|
|
Here's what I went with. This is similar to GSerg's answer, but uses the better documented CopyMemory API function and is entirely self-contained (you can just pass the array rather than ArrPtr(array) to this function). It does use the VarPtr function, which Microsoft warns against, but this is an XP-only app, and it works, so I'm not concerned. Yes, I know this function will accept anything you throw at it, but I'll leave the error checking as an exercise for the reader.
|
|||||||||
|
|
I just thought of this one. Simple enough, no API calls needed. Any problems with it?
Edit: I did discover a flaw with this related to the behavior of the Split function (actually I'd call it a flaw in the Split function). Take this example:
What is the value of Ubound(arr) at this point? It's -1! So, passing this array to this IsArrayInitialized function would return true, but attempting to access arr(0) would cause a subscript out of range error. |
|||||||||
|
|
I found this:
Edit: RS Conley pointed out in his answer that (Not someArray) will sometimes return 0, so you have to use ((Not someArray) = -1). |
|||||||||
|
|
Both methods by GSerg and Raven are undocumented hacks but since Visual BASIC 6 is no longer being developed then it is not a issue. However Raven's example doesn't work on all machines. You have to test like this. If (Not someArray) = -1 Then On some machines it will return a zero on others some large negative number. |
|||||||||||
|
|
In VB6 there is a function called "IsArray", but it does not check if the array has been initialized. You will receive Error 9 - Subscript out of range if you attempt to use UBound on an uninitialized array. My method is very similar to S J's, except it works with all variable types and has error handling. If a non-array variable is checked, you will receive Error 13 - Type Mismatch.
|
|||
|
|
|
When you initialite the array put an integer or boolean with a flag = 1. and query this flag when you need. |
|||
|
|
|
This is modification of raven's answer. Without using API's.
This one should also be working in case of split function. Limitation is you would need to define type of array (string in this example). |
|||
|
|
|
My only problem with API calls is moving from 32-bit to 64-bit OS's.
|
|||
|
If the array is a string array, you can use the Join() method as a test:
|
||||
|
|
|
|||