Outlook_developer
Guest
|
Posted:
Thu Jan 27, 2005 10:41 pm Post subject:
"No such interface supported" error in Event Sink |
|
|
An Event Sink on Exchange 2000 gives an error ("No such interface
supported") with this simple code snippet. This is for a System OnTimer
event.
I looked at the Exchange installation and it looks fine (EXOLEDB.DLL is
there, for example). I reinstalled both MDAC 2.8 and SP1 and it still gives
this error. Also, I tested the exact same code (this is part of a larger
Event Sink) on other Exchange servers and it works just fine. It is just
this one customer where I am installing this Sink that is having this
problem. Any help much appreciated!:
Private Sub IExStoreSystemEvents_OnTimer( _
ByVal bstrURLItem As String, _
ByVal lFlags As Long)
On Error Resume Next
Dim rec As ADODB.Record
Set rec = New ADODB.Record
rec.Open bstrURLItem
' I put error checking stuff here that tells me what the error is. It
says "No such interface supported"
|
|