In VFP, how can I have a structure of my classes wherein I have one class ground-zero from which all other classes, even of different baseclass type, will inherit from?
For instance, say I want a method or property to be present in all my classes; every textboxes, every checkbox, every label, containers, etc. Since each class can only be based on a class of the same type, I have no real ground-zero point at which I can add stuff that will be inherited by all my classes. So, apparently, I have to add the property or method to each of my root base classes. Add the new property to my textbox baseclass, add the new property to my checkbox baseclass, add the new property to my label base class, blah, blah, blah. Maintaining them in this manner seems to be a little short of a full OO architecture. >From what little I have learned about C# classes, I think you can indeed have a one ground-zero object class on which even different class types can be based. --- StripMime Report -- processed MIME parts --- multipart/alternative text/plain (text body -- kept) text/html --- _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/00ac01c97bda$4a353de0$de9fb9...@com ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

