P
_prefix
is anyone finding a problem with importxml?
I wrote this code:
function f1()
Application.ExportXML acExportTable, "sites", , "schema-sites.xml"
end function
function f2()
Application.ImportXML DataSource:="schema-sites.xml",
ImportOptions:=acStructureOnly
end function
when I run these functions in order, a runtime error message is returned.
even if I rename the 'sites' table before importing.
I also noticed the compiler doesn't seem to recognize the importoptions
keyword and perform customary case translation (i.e.,
"imPoRtOptions"->"ImportOptions")
I wrote this code:
function f1()
Application.ExportXML acExportTable, "sites", , "schema-sites.xml"
end function
function f2()
Application.ImportXML DataSource:="schema-sites.xml",
ImportOptions:=acStructureOnly
end function
when I run these functions in order, a runtime error message is returned.
even if I rename the 'sites' table before importing.
I also noticed the compiler doesn't seem to recognize the importoptions
keyword and perform customary case translation (i.e.,
"imPoRtOptions"->"ImportOptions")