Quote:
> I want to implement inheritance using vb 5 in my application .I know
> that there is no direct way to do it but I still want to try.
If you haven't already, take a look at the Implements statement. With it,
you can do interface inheritance. I found it best to start with an abstract
class that contained the base functions and some common code. It's
certainly not full inheritance, but it can get you a decent distance in
that direction.
--
Frank Carr