Long copying duration (a = b) (< V4.20 B6)
Posted: Tue May 20, 2008 10:33 am
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......with this expression : (speed *2 without debugger)
PS: I've PB V4.10 B2. I don't know if it's the same for others versions.
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
Code: Select all
a ! a + b
PS: I've PB V4.10 B2. I don't know if it's the same for others versions.