Quote:
Originally posted by Clearcode
Using API calls would actually be slower in this respect as every time you call an API, VB has to load the parameters onto the stack then set the code pointer then unload them again thereafter.
Hmm, is that so (not that I want to argue with you on API knowledge :))? An array is nothing more than an array of pointers to the actual data, along with a pointer to the next element, right? So basically all you need to do is pass the pointer of the first element, in case of vb this would be the first element (arr(0)).