On 11/25/2009 01:40 PM, Denis Koroskin wrote:

IIRC lower bound is 1 by default in VB and therefore b(0) is illegal.


Nope.

Dim b(8) as String

is equivalent to

Dim b(0 to 8) as String

and therefore b(0) is very legal.

Reply via email to