07-17-2024, 09:16 AM
May also be an issue with having to reset array values to 0.
TYPE foo
x AS STRING
y AS LONG
END TYPE
REDIM whatever(1000) AS foo
I seem to remember that the above doesn't always initialize arrays to 0, so you may need to do so manually for that, leading to extra run time and such.
TYPE foo
x AS STRING
y AS LONG
END TYPE
REDIM whatever(1000) AS foo
I seem to remember that the above doesn't always initialize arrays to 0, so you may need to do so manually for that, leading to extra run time and such.