> That is a good idea. If I copy and paste a "def" into the driver, will > it automatically replace the common one? Yep, that's how subclasses work. If you re-define something in the subclass, then it takes precedence. If not, you get the one defined in your parent class (i.e. the common one). --Dan