I am at my end....and need help...I appoligize for my ignorance but I am very new to this.
What I need is to create an XML file from Access with a Specific Format. I can export out of Access now with this:
=====================================================
CODE:
Application.ExportXML _
ObjectType:=acExportTable, _
DataSource:="Events", _
DataTarget:="Events.xml", _
SchemaTarget:="EventsSchema.xml"
======================================================
Although this does not satisfy the format that I need. I have read about XSL style sheets etc
1. But cannot figure out how create them.
2. How to invoke them.
This is the format that I am tryign to get my XML file into.
========================================================
XML FORMAT:
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:geo=" xmlns:mappoint="<channel>
<title>Mount Saint Helens - Mount Margaret Trail</title>
<link></link>
<description>Trailheads and campsites in the Mount Margaret area of Mount Saint Helens, WA</description>
<mappointIntlCode>cht</mappointIntlCode>
<item>
<title>THIS IS THE TITLE</title>
<description> THIS IS THE DESCRIPTION</description>
<geo:lat>45.09485</geo:lat>
<geo:long>-93.44696</geo:long>
<icon>PUSHPIN.gif</icon>
</item>
</channel>
</rss>
===========================================================
IS THERE ANYONE OUT THERE THAT CAN HELP ME:
How to create a template
How to invoke it
How to create an XML file in the format above
I WOULD BE SO VERY MUCH APPRECIATIVE....
THANK YOU
What I need is to create an XML file from Access with a Specific Format. I can export out of Access now with this:
=====================================================
CODE:
Application.ExportXML _
ObjectType:=acExportTable, _
DataSource:="Events", _
DataTarget:="Events.xml", _
SchemaTarget:="EventsSchema.xml"
======================================================
Although this does not satisfy the format that I need. I have read about XSL style sheets etc
1. But cannot figure out how create them.
2. How to invoke them.
This is the format that I am tryign to get my XML file into.
========================================================
XML FORMAT:
<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:geo=" xmlns:mappoint="<channel>
<title>Mount Saint Helens - Mount Margaret Trail</title>
<link></link>
<description>Trailheads and campsites in the Mount Margaret area of Mount Saint Helens, WA</description>
<mappointIntlCode>cht</mappointIntlCode>
<item>
<title>THIS IS THE TITLE</title>
<description> THIS IS THE DESCRIPTION</description>
<geo:lat>45.09485</geo:lat>
<geo:long>-93.44696</geo:long>
<icon>PUSHPIN.gif</icon>
</item>
</channel>
</rss>
===========================================================
IS THERE ANYONE OUT THERE THAT CAN HELP ME:
How to create a template
How to invoke it
How to create an XML file in the format above
I WOULD BE SO VERY MUCH APPRECIATIVE....
THANK YOU