G
Guest
Hi all,
Using Ac2002 with VBA, I encountered a problem with the Application object's
ImportXML() method:
This method is specified in the Access documentation ("Visual Basic Help")
with the following signature:
Sub ImportXML(DataSource As String, DataTransform As String, OtherFlags As
Long)
However, the object browser (and thus in the type definition) specifies:
Sub ImportXML(ByRef DataSource As String, Optional ByRef ImportOptions As
AcImportXMLOption = acStructureAndData)
I clearly can only use the typedefed variant, i.e. the latter.
Since I have to transform the XML (replace decimal points by German "decimal
commas", which is what Access in a German Windows environment expects), I'd
be grateful if any of you told me how to use ImportXML() with XSLT.
I could, of course, first transform the original file into a modified one,
and then import this. But it would be much easier, if Access really supported
stylesheet transformation as the help pages seem to promise.
Thanks in advance for any hints!
JotKa
Using Ac2002 with VBA, I encountered a problem with the Application object's
ImportXML() method:
This method is specified in the Access documentation ("Visual Basic Help")
with the following signature:
Sub ImportXML(DataSource As String, DataTransform As String, OtherFlags As
Long)
However, the object browser (and thus in the type definition) specifies:
Sub ImportXML(ByRef DataSource As String, Optional ByRef ImportOptions As
AcImportXMLOption = acStructureAndData)
I clearly can only use the typedefed variant, i.e. the latter.
Since I have to transform the XML (replace decimal points by German "decimal
commas", which is what Access in a German Windows environment expects), I'd
be grateful if any of you told me how to use ImportXML() with XSLT.
I could, of course, first transform the original file into a modified one,
and then import this. But it would be much easier, if Access really supported
stylesheet transformation as the help pages seem to promise.
Thanks in advance for any hints!
JotKa