Hi John,
I have followed the example in :
http://support.microsoft.com/default...b;en-us;308825
instead of using += operator, I'm using:
..............................
UCOMIConnectionPointContainer oConnPointContainer =
(UCOMIConnectionPointContainer) MyComObj;
Guid guid=typeof(ABCComObjEvents).GUID;
oConnPointContainer.FindConnectionPoint(ref guid,out
m_oConnectionPoint);
m_oConnectionPoint.Advise(this,out m_Cookie);
.........................
still no luck for me. It giving me the same exception. I need help
Ducky