D'oh! I saw that my parsing function can't return an entire array to its caller. I may just have to allow that array to have global scope, then. Or at least concatenate everything back into a single variable-length string to return using CHR$(0) as new delimiters.
Make sure the array is dynamic, REDIM it to anynumberofelements (to create a valid array) and pass it as a parameter to the parsing function.
In the parsing function, count the number of arguments, REDIM the array to the correct size and fill it.
Leave a comment: