I've had lots of occasion to work with multidimensional arrays since joining
the company I'm with. I hate working with recordsets, especially SHAPED
recordsets, preferring instead to get the recordset into an array and
closing it as soon as possible. It's not uncommon to find references like:
response.write employeeArray(1, 2)(3, 4)
where an element of a multidimensional array ~contains~ a multidimensional
array. Of course, javascript doesn't support them so then you have to work
with arrays of arrays, as in
MakeArray[0] = "Ford"
MakeArray[0][0] = "Escort"
MakeArray[0][1] = "Fairland"
MakeArray[0][2] = "Maverick" // have I given away my age yet?
and so on.
"KP" <> wrote in message
news:#VW0ky#...
>
>
> Hi William
> Thank you so much for taking the time out to answer my question so
> thoroughly.
>
> I've used your suggestion and its working a treat. I now just have a
> problem with my array so I now just need to mess about with it a bit to
> get it right. I hate multi-dimensional arrays but in this case it is
> very necessary 
>
> I may be back if I can't figure it out!
>
> Thanks again.
> Kathryn.
>
> *** Sent via Developersdex http://www.developersdex.com ***
> Don't just participate in USENET...get rewarded for it!