Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

vb Array?

I have the following array with 2 elements in it, as the following shows:

ReDim arrMyArray(1)

arrMyArray(0) = "max"
arrMyArray(1) = "123 pringle street"

How can i disply the full contents of the array? e.g. "max","123 pringle street"

Any thoughs would be appreciated? :confused:
[318 byte] By [mp_direct] at [2007-11-11 7:21:06]
# 1 Re: vb Array?
Debug.Print Join(arrMyArray, ",")
Phil Weber at 2007-11-11 17:27:06 >