Re: LBound Type Mismatch Error -
08-05-2004
, 11:53 AM
Probably, but you'll have to post your code.
The problem is because on line 81, you're using LBound to get the lowest
subscript in an array dimension. To get the type mismatch error, you either
called LBound on something that is not an array, or you may have attempted to
use LBound on a dimension of the array that does not exist. That is
LBound(myArray,2) would throw an error if myArray is a one-dimensional array. |