Form Speed

M

Matt

Hi All,

Has anyone noticed speed improvements by writing less code in the
actual form module and keeping most of the code in a seperate module?
 
A

Arvin Meyer [MVP]

Matt said:
Hi All,

Has anyone noticed speed improvements by writing less code in the
actual form module and keeping most of the code in a seperate module?

No, the reverse is probably true, but only by microseconds. Forms are slowed
by the abundance of data. Limit the data by using queries on properly
indexed tables, and you speed up forms immensly.
 
Top