Simulate it using inplementation and delegation, that's the closest that
you'll get to it. It works well.
Quote:
> Hi!
> Does anybody know how to inherit a class(derive from a base class) in
Visual
> Basic? I tried using the Implements statement but this is only good for
> polymorphism. It does not allow me to declare aditional private
attributesor
> functions in the derived class. Basically, my attributes in the base class
> (interface as it is called in VB) must match the attributes in the derived
> class which is not what I want. Can anybody help??