How do I parent a class with two superclasses? Thanks
Xojo does not support multiple inheritance.
Right. Use Interfaces instead.
Interfaces are not technically multiple inheritance but comes close to helping you solve the same issue without the diamond problem.
Thanks people.