Error.Description : Unable to find an object or data matching the name, to the beach or the selection criteria within the scope of this operation.
I'm getting this error when I run code on Windows 7. It doesn't appear on Windows XP. I read this article and had no luck. Here is the code:
Public Function testLL()
Dim rc As New ADODB.Record
Dim rs As New ADODB.Recordset
Dim conn As ADODB.Connection
Dim objStream As New ADODB.Stream
Dim sURL As String
sURL = "http://livelink.company.com/livelinkdav/nodes/154680737/"
rc.Open sURL, , adModeReadWrite
Set rs = rc.GetChildren
If Not (rs.BOF And rs.EOF) Then
rs.MoveFirst
MsgBox rs.Fields(1).Value
End If
End Function
Some people have suggested this a problem with MDAC version. I can check the version on Windows 7, but I need admins rights on XP so I couldn't verify if the versions were the same.