Re: Property Get vs Function
Functionaly, they are the same thing - do some action, return a result. Design-wise, a Get property procedure should return only the current value of some local variable in a class module. If the routine is to perform some sort of action(s), then it should be a function, so everyone knows, just by looking in the object browser, what its purpose is.
just my $.02
john
John Pirkey
MCSD
http://www.ShallowWaterSystems.com
http://www.stlvbug.org
Re: Property Get vs Function