A
Alex Dybenko
hi,
perhaps something like this:
Dim a() As Variant, i As Integer
a() = Array(1, 4, 6, 8, 88)
For i = LBound(a) To UBound(a)
Debug.Print a(i)
Next i
--
Best regards,
___________
Alex Dybenko (MVP)
http://accessblog.net
http://www.PointLtd.com
perhaps something like this:
Dim a() As Variant, i As Integer
a() = Array(1, 4, 6, 8, 88)
For i = LBound(a) To UBound(a)
Debug.Print a(i)
Next i
--
Best regards,
___________
Alex Dybenko (MVP)
http://accessblog.net
http://www.PointLtd.com