Re: Matt - MSADO15.ew
- Posted by Matt Lewis <matthewwalkerlewis at yahoo.com> Oct 27, 2004
- 1015 views
Jonas Temple wrote: > > Matt, > > If you recall, you helped me with a problem using ADO with EuCom. You > sent me an email with suggested changes to MSADO15.ew and I can't seem > to put my finger on it. > > If you still have that email, could you resend? I don't have it on this machine. I'll have to take a look when I go home. Looking at what I do have here with respect to msado15.ew, it looks like I commented out some interfaces for Connection objects.
global constant Connection_clsid = "00000514-0000-0010-8000-00AA006D2EA4", Connection_clsid_ix = add_clsid( Connection_clsid) , Connection_disp = add_iid( Connection_clsid_ix, IDispatch), --Connection_IQuickActivate_ix = add_iid( Connection_clsid_ix, IQuickActivate ), --Connection_IPersistStreamInit_ix = add_iid( -- Connection_clsid_ix, IPersistStreamInit ), Connection_IConnectionPointContainer_ix = add_iid( Connection_clsid_ix, IConnectionPointContainer )
Also, I think I may have used a different IID for the event interface. Try these:
global constant ConnectionEvents = "00000400-0000-0010-8000-00AA006D2EA4", ConnectionEventsVt = "00000402-0000-0010-8000-00AA006D2EA4",
The ConnectionEventsVt doesn't seem to work, but I get events fired for the first one. Matt Lewis