Saturday, May 23, 2009

Nearly Dead: AppControls Slowness due to Hooking

Q: What happens if you put too many hooks in 1 form?
A: The window acts very slow because chain-of-command passes from one hook to another.

For example, putting 50 AppControls components will lead to slow form.
(50 chained hooks)


On other hand, LMD and TMS resolve this issue by using global form hook instead.
(1 hook, different components listen into that 1 hook)

No comments: