> > Aren't static variables and properties kinda the same thing? > Or do statics get used to keep the property list short?
Yes and no. Properties are objectively scoped, static variables are functionally scoped. I've found them handy in several situations, here's a very quick example. > static callCount as integer > > //do my function > > callCount = callCount +1 The callCount gets incremented each time the instance of the function is called - Tom _______________________________________________ Unsubscribe or switch delivery mode: <http://www.realsoftware.com/support/listmanager/> Search the archives: <http://support.realsoftware.com/listarchives/lists.html>
