H
Halimaji Nijazi
Hi newsgroup
I am creating a Mustinheritable Class. From this class I inherit several
other classes.
Now I like to interit the events to, but I can't do this. What am I doing
wrong.
Here is a simple code as sample:
Public MustInherit Class test
Public MustOverride Function testFunct() As Boolean
Public Event testevent()
End Class
Public Class test2
Inherits test
Public Overrides Function testFunct() As Boolean
End Function
End Class
I only want to use the event from the base class, but don't know how...
Thanks for the help...
Regards
Nijazi Halimaji
I am creating a Mustinheritable Class. From this class I inherit several
other classes.
Now I like to interit the events to, but I can't do this. What am I doing
wrong.
Here is a simple code as sample:
Public MustInherit Class test
Public MustOverride Function testFunct() As Boolean
Public Event testevent()
End Class
Public Class test2
Inherits test
Public Overrides Function testFunct() As Boolean
End Function
End Class
I only want to use the event from the base class, but don't know how...
Thanks for the help...
Regards
Nijazi Halimaji