COM+ Get Dll`s event
I created a DLL (conexao.dll) and install/register in my server. There is a class (ConBD) with 2 event in this DLL and I used raisevent to return values to application alone (client).
I Created a new application in the COM+ and install new component in my server.
My application name in the COM+ is cecafe and my component is Conexao.ConBD.
So, In the client's application I used this to create an instance of dll.
Dim Obj as Object
Set Obj = CreateObject ("Conexao.ConBD","SERVER COMPANY")
I can't use the WithEvents in variavel declaration, so, I can't access the events of this dll.
So, friend...what's wrong? How can I access theses events?
Best Wishes,
Eduardo Heron Santos

