Bryanne Vega Member Licensed User Longtime User Oct 1, 2015 #1 Saving time by reusing code is a must! Am I missing something or is the support for this still not available? FirstClass{ } Class SecondClass inherits FirstClass{ }
Saving time by reusing code is a must! Am I missing something or is the support for this still not available? FirstClass{ } Class SecondClass inherits FirstClass{ }
Erel B4X founder Staff member Licensed User Longtime User Oct 1, 2015 #2 Inheritance is not supported. You can however use composition (which in most cases results in a better design). Add FirstClass as an instance of SecondClass.
Inheritance is not supported. You can however use composition (which in most cases results in a better design). Add FirstClass as an instance of SecondClass.