Ok I need some help... Here's my question..

I have 2 Classes..

ClassA and ClassB

ClassA has a instance of class B declared in it..

ClassA
CB As ClassB
.......
Sub Whatever
End Class

Ok I need to know if there is anyway to Access "Sub Whatever" in ClassA from inside the instance of CB (ClassB).

My problem is ClassB is a child socket class, and when the socket receives data and it's receive data event fires, I need to be able to access the parent class's routines without having a actual reference address to the parent that contains the socket class. I though MyBase would do it but it doesn't seem to.. Can anyone offer any insight on how to call a parents routines from a child instance?