I have an XML file that was created by a VB.NET routine.
When I try to open it as an ADO recordset in VBA, I get the following error:
Code I'm using to attempt opening the XML as recordset:
Is this happening because the XML file was created in something other than ADO?
If this is more of a VB.NET question than VBA, please let me know
Thanks in advance!
When I try to open it as an ADO recordset in VBA, I get the following error:
Code:
(3709) The connection cannot be used to perform this operation. It is either closed or invalid in this context.
Code I'm using to attempt opening the XML as recordset:
Code:
Dim rst As New ADODB.Recordset
rst.Open ("C:\vendors.xml")
Is this happening because the XML file was created in something other than ADO?
If this is more of a VB.NET question than VBA, please let me know
Thanks in advance!