Originally posted by dejavu33
Code:
Public Sub DisplayArray(ByVal theArray() As Variant)
Dim I As Long
For I = Lcount(theArray) To Ucount(theArray)
Console.WriteLine("{0}", theArray(I))
Next
Console.WriteLine(ControlChars.Lf)
End Sub
Hm...
Actually, from your earlier post, it looks as though my Lcount and Ucount functions are probably obsolete, and most likely replaced by something like theArray.GetLow erBound and theArray.GetUpp erBound.
Comment