Event Handling in VB.Net + Object Late Binding

E

Elan

I Created Object A in the Object B. then I called a object A function
from object B...
Like..

Public Class A

Public Event beforeSample()

Public Sub function_Sample()

RaiseEvent beforeSample()

''''''
''''''
''''''
End Function

End Class

Public Class B

Private WithEvents obj as new A

Private Function Main() as Boolean
''''''
'''''
'''''
'''''
Obj. function_Sample()
'''''
'''''
'''''
'''''
End function


Private Sub obj_beforeSample() handle Obj.beforeSample

End Sub

End Class

So here I handle the event beforeSample in the Object B....!

The Problem is... How do I handle the events, if I create the object in
late bind method means...

Public Class B

Private obj as Object

Private Function Main() as Boolean

''''''
''''''
''''''
obj = new A 'late bind method

''''''
''''''
''''''
Obj. function_Sample()

End Function

End Class

Then How to handle the events of Object A ??
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,777
Messages
2,569,604
Members
45,234
Latest member
SkyeWeems

Latest Threads

Top