Posted - 23 April 2001 14:46 -------------------------------------------------------------------------------- Can anyone point me to a good resource on the above? I guess that I have a mental block about arrays and I'm looking for some excellent reference material - particularly an a-b-c idiots guide reference
There is a description page in the Visual Basic documentation that gives some clues. You'll find many responses searching MSDN for "dynamic array" (more than you want, probably).
Using rs.GetRows() in ADO helped me understand multi-dimension arrays better. The dynamic part is just the hoops you have to jump through to reallocate memory as your array changes size, using the ReDim & such commands (VB).
I've never run across 'excellent' reference material other than writing some code, then making it work :)