Jack wrote: > So the variables of the base class will also have been created even > before the constructor of the base class is called?
The variables themselves are created, yes. The things those variables are supposed to refer to are not created. For instance, if the object has a TButton field, that field will be nil; it will not refer to any TButton instance. -- Rob _______________________________________________ Delphi mailing list -> [email protected] http://www.elists.org/mailman/listinfo/delphi

