While pre-inizializing the full array and replacing elemets as you go has performance advantages if the arrays get big, the answer to your specific question is as follows:
There are two easy ways to append an array element to the end of an existing 1D array, thus growing the array by one.
- Use built array (preferred!)
- Use "insert array element" with the index terminal disconnected.

Message Edited by altenbach on 08-01-2006 09:23 AM