> When I converted the results audit trail to a list: > > results.insert (1, "Current Dice Roll ...") > > A 10,000 roll sequence only takes roughly 1.5 seconds.... Notice that using insert/append does not help at all when you add a single character at the time, since the list is copied on each resize, also. Regards, Martin