MS Project (2000, 2002, & 2003) xml

B

BlackShirt

Regarding these three versions I'm wondering what my options are for getting
a MS Project to output its data in an XML format. I know MS has released the
schema for 2003 so obviously its possible to parse the XML data for that
version.

My question is regarding the other versions. Does anyone know of companies
that can take a .mpp file and output the project in XML? Anyone have any
ideas of how to get the data from these versions into an xml format. I'm
sure I could create a VB app to do it but I figured there were components or
companies that have already done it.

thanks
 
J

JackD

From Project,

File Menu / Save As / set "Save as type" to .xml / click save button.

Can hardly get any simpler.
In VBA code:

Sub saveToXML()
FileSaveAs Name:="C:\Project1.xml", FormatID:="MSProject.XML"
End Sub
 
B

BlackShirt

JackD,
Thanks for the response but the options you mention must be later than
2000. In 2000 there is no XML option. I'm not sure about later versions.

So does your solution just include 2002, and 2003? Also is there some
type of schema for 2002?

Thanks
 
B

BlackShirt

I think this is the info I need to get started. I'll try to stay away from
2000 and focus on 2002 and 2003.

Thanks
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top