java_ftp-er
New member
- Local time
- Today, 10:41
- Joined
- Aug 31, 2008
- Messages
- 1
Xml output from access 2000
hi,
I need to output a table to an xml file. good old google has returned the following:-
Code:
Howevever this falls over with Compile error: syntax error on the following line:-
ExportXML acExportTable , "technologies", sXMLPath
Any thoughts greatly appreciated.
hi,
I need to output a table to an xml file. good old google has returned the following:-
Code:
Code:
Private Sub Form_Open(Cancel As Integer)
Dim sXMLPath As String
Const cOverWrite As Integer = 1
sXMLPath = "c:\technologies.xml"
' ExportXML ObjectType, DataSource, DataTarget
ExportXML acExportTable, "technologies", sXMLPath
End Sub
Howevever this falls over with Compile error: syntax error on the following line:-
ExportXML acExportTable , "technologies", sXMLPath
Any thoughts greatly appreciated.