M
Mike P
Hello
I have figured out how to generate an XML file thanks to help from this group. What I am trying to figure out now is how to take an XML file and import it into Access.
Below is my logic to Export, can someone tell me what my logic would be to Import
-------------------------------------------------------
Private Sub cmdExportXML_Click(
Dim conn As ADODB.Connection, rst As New ADODB.Recordse
Dim qryName, strFileName, strFileLocation As Strin
Set conn = Application.CurrentProject.Connectio
qryName = "qryNodeTableXmlExport
strFileName = “ExportFile
strFileLocation = "c:/Tmp/dbTest/
With rs
.Open qryName, conn, adOpenDynamic, adLockOptimisti
.Save strFileLocation & strFileName & ".xml", adPersistXM
.Clos
End Wit
End Su
Thanks in advance for your time and effort. I am new to Access and appreciate the help. I am using Access 2000 SP-3
Michae
I have figured out how to generate an XML file thanks to help from this group. What I am trying to figure out now is how to take an XML file and import it into Access.
Below is my logic to Export, can someone tell me what my logic would be to Import
-------------------------------------------------------
Private Sub cmdExportXML_Click(
Dim conn As ADODB.Connection, rst As New ADODB.Recordse
Dim qryName, strFileName, strFileLocation As Strin
Set conn = Application.CurrentProject.Connectio
qryName = "qryNodeTableXmlExport
strFileName = “ExportFile
strFileLocation = "c:/Tmp/dbTest/
With rs
.Open qryName, conn, adOpenDynamic, adLockOptimisti
.Save strFileLocation & strFileName & ".xml", adPersistXM
.Clos
End Wit
End Su
Thanks in advance for your time and effort. I am new to Access and appreciate the help. I am using Access 2000 SP-3
Michae