Hello Aby, I have some clues as to what might have gine wrong but I need some more information from you first : Is the events proxy code implemented somewhat like the following ? : HRESULT Fire_SampleRecordPkt(VARIANT vBytes) { CComVariant varResult; T* pT = static_cast(this); int nConnectionIndex; CComVariant* pvars = new CComVariant[1]; int nConnections = m_vec.GetSize(); for (nConnectionIndex = 0; nConnectionIndex < nConnections; nConnectionIndex++) { pT->Lock(); CComPtr sp = m_vec.GetAt(nConnectionIndex); pT->Unlock(); IDispatch* pDispatch = reinterpret_cast(sp.p); if (pDispatch != NULL) { VariantClear(&varResult); pvars[0] = &vBytes; // <-- important. DISPPARAMS disp = { pvars, NULL, 1, 0 }; pDispatch->Invoke(0x1, IID_NULL, LOCALE_USER_DEFAULT, DISPATCH_METHOD, &disp, &varResult, NULL, NULL); } } delete[] pvars; return varResult.scode; } Please note the line in which I added the comment "// <-- important.". Please let me know because I suspect your problem may be a case of wrong code generated by the wizard. Please revert, Bio.