Object property or variable?

hog

Senior Contributor
Joined
Mar 17, 2003
Messages
984
Location
UK
Is it more efficient to store the value of an objects property to a form level variable and use the variable rather than continually calling the objects property to get the value?
 
I'd call the propertry. Definitely.

The Property could change, for whatsoever reason, and the variable would be outdated. The variable could be changed, by accident or whatever, and would then contain false values.
 
Back
Top