Cosmin Prund wrote: > Also try using a better techique for building the string, something like > building it into an TStringStream or onto a TStringList. That might make it > a bit more faster and safer.
In its current implementation, TStringStream isn't any better than appending to a regular string. Its only advantage is that you can use it like a stream. It doesn't allocate any extra memory beyond the minimum it needs to hold the string data. -- Rob __________________________________________________ Delphi-Talk mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi-talk
