Page 1 of 1

Long copying duration (a = b) (< V4.20 B6)

Posted: Tue May 20, 2008 10:33 am
by Ollivier
Hi,

If you want to go faster when you copy a long variable to an other long variable (ex : a = b), you can replace this...

Code: Select all

a = b
...with this expression :

Code: Select all

a ! a + b
(speed *2 without debugger)

PS: I've PB V4.10 B2. I don't know if it's the same for others versions.

Posted: Tue May 20, 2008 10:49 am
by Fred
Should be not valid anymore with 4.20 beta 6..

Posted: Tue May 20, 2008 11:19 am
by Ollivier
Ok, Sorry!