joe ertaba wrote: > Thank you very much :) > > So why it isn't better to use variable name (p in my case) always > instead of "this" ? You need "this" to refer to the current object. In general object-oriented programming, you don't always know what this is, so you can't refer to it as p. Matthew