Speed Up Large Script
hi
i have a report with about 1000 rows of pascalscript-code in it.
the report tooks approx. 10 sec. to "pop up".
the execution time seems not to be the problem. but the preparation time (whatever happens before "OnStartReport") will last about 8 sec.
what is the best way to improve the performance?
can i precompile the code and use ilcode also if i want to pass variables to the report before building it?
sorry, but i didnt understand this "precompile"-thing really
thanks for your ideas
hoschi
i have a report with about 1000 rows of pascalscript-code in it.
the report tooks approx. 10 sec. to "pop up".
the execution time seems not to be the problem. but the preparation time (whatever happens before "OnStartReport") will last about 8 sec.
what is the best way to improve the performance?
can i precompile the code and use ilcode also if i want to pass variables to the report before building it?
sorry, but i didnt understand this "precompile"-thing really
thanks for your ideas
hoschi
Comments
thank you
move some code items out to external functions where possible.
thanks ...