H
Henry Padilla
I realize that MyBase.MyBase is illegal, so how DO I get to the Parent of
MyBase?
In Short what is the VB equivalent of "::"?
Example:
Class Component
Inherits Hashtable
Public Shadows Sub Add()
'Extra Add stuf for this component
End Sub
End Class
~~~~~~~~~~~~~~~
Class BetterComponent
Inherits Component
Public Shadows Sub Add()
'How do I get to the Hashtable.Add and skip the "Extra Component" stuff??
End Sub
End Class
MyBase?
In Short what is the VB equivalent of "::"?
Example:
Class Component
Inherits Hashtable
Public Shadows Sub Add()
'Extra Add stuf for this component
End Sub
End Class
~~~~~~~~~~~~~~~
Class BetterComponent
Inherits Component
Public Shadows Sub Add()
'How do I get to the Hashtable.Add and skip the "Extra Component" stuff??
End Sub
End Class