Hi,

How would I delcare and use a multi-dimension array?

I know how to use a single dimension:

Code:
Dim sArray() as string

   sArray(0) = "Hello World!"

   MsgBox sArray(0)
But what I would like to do is something like:

"Hello Dan" or "Hello John", etc... How would you declare this array and how would you call out the location of the array to get Dan or John?

Any help would be appreciated..

DAn

Dan