LBound
The LBound function returns the lower bound for the array
parameter. The lower bound is the lowest possible value you can
use as an array index.
Most arrays have a lower bound of zero. In the rare event that you
have an array that is indexed at anything else other than zero, you
may use this function to determine where the array index begins.
Dim aArray aArray = Array("One","Two","Three") Response.Write "LBound(aArray) = " & LBound(aArray) & "<BR>"
Currently, there is no way to create an array with a lower bound of
anything other than zero. For this reason, this function is pretty
much useless. Microsoft left it in the language to provide for
future expansion of the language.
|
 |

|