tags:

views:

126

answers:

1

How to create a calendar using XML

+2  A: 

One way of "using xml" to create a calendar would by to use configuration xml files, like this flash Calendar, where all the images and text are loaded from an easy-to-edit XML file.

However simple ini files might be as effective, and easier to edit ;)

You may think about some xml format representing a Calendar, knowing that XSD might transform it into a Calendar, but for that, we ought to know more about your expected output format.

For instance, Microsoft does have a Calendar element, which represents calendar data when you save a project in the XML format.
That can give you a good example of xml format for such a Data.

VonC