Your question is lacking the details to give you a good solid answer.
If your xml is well structured data and you have a crystal report that you need to feed data in to, then I would read the XML into a datatable or dataset (whichever is appropriate) and pass that to the crystal report to consume.
Something like this:
Dim DT as datatable
dt.readXML(filename)
'Not sure of the CR syntax here
Report.datasource = dt
report.run
CodeWord
Junior Poster in Training
63 posts since Feb 2011
Reputation Points: 16
Solved Threads: 13