Hi,
For what it's worth: I have noticed a speed increase
going from r2 to r3 (in debug mostly).
I think it might be due to this:
"Core Framework: Updated many of the internal core
functions to
use optimized versions of standard code.
This should
affect many parts of the REALbasic
framework and provide
decent speed gains."
Also, I have an app with a main window containing many
objects. I have found that my biggest speed
improvement came when I started testing the objects
before I changed them. I stopped blindly setting them
and had a large speed improvement.
eg.
for i = 0 to 1000
if ([object_i] <> [new state])
[object_i] = [new state]
end if
next
// is much faster than
for i = 0 to 1000
[object_i] = [new state]
next
Regards,
Russ
____________________________________________________
On Yahoo!7
Dating: It's free to join and check out our great singles!
http://www.yahoo7.com.au/personals
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>