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?
|
|
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've been working in VB6 for a few years now and I never knew about either the If (Not someArray) = -1 or the GetMem4 method of testing for this. I always used a seperate counter to keep track of an array, which is definitely not ideal (I know), but I believed it less to be expensive, performance wise, than the error handling method. It is obviously an inferior solution to the GetMem4 method for many reasons, but it does have two small advantages, in my opinion, that it is incredibly simple to implement and negates the need for the IsEmpty test when looping through the array. Just my two cents. |
||
|
|
|
|
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. |
||||||
|
|
|
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. |
||||||
|
|
|
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 :) |
||
|
|
|
If the array is a string array, you can use the Join() method as a test: Private Sub Test()
End Sub Function StringArrayCheck(o As Variant) As Boolean
End Function |
||
|
|
|
|
|
||
|
|
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). |
||||
|
