G
Guest
I have Code that can either be run inline or called as multiple procedures. What would be the best practice, I like the component model with procedures but heard that inline executes faster... Thanks in advance...
Also, why does calling dispose such as with any var.dispose execute faster then simply setting to nothing.
Which is faster
dim me as va
some cod
me = nothin
o
dim me as va
some cod
me.dispos
me = nothin
Thanks...
Also, why does calling dispose such as with any var.dispose execute faster then simply setting to nothing.
Which is faster
dim me as va
some cod
me = nothin
o
dim me as va
some cod
me.dispos
me = nothin
Thanks...