> I am concatenating two strings using the concatenate function in a For
> Loop, and executing the loop 25000 times. The loop executes as if
> there is a delay in the loop. I am running this test in normal
> execution mode, NOT Highlight mode.
> I understand there are more efficient ways to do this but I am trying
> to understand the concept why the concatenate slows execution soo
> much.
> Can anyone provide me with some knowledge on this topic?
Is there anything else in the loop? Perhaps an update to a control or
indicator? Or maybe you are building an array of the output strings.
While concatonate will have to do memory management, I was able to do
25,000 in milliseconds. How many milliseconds depends on the size of
the string, but it is quite fast.
Greg McKaskle