XML file to crystal report

Jelmer

Well-known member
Joined
Jan 11, 2006
Messages
96
Hello

I try to build a nice crystal report.
My program builds a XML file like this:

Code:
<?xml version="1.0"?>
<factuur>
  <divers>
    <factuurnummer>Article.xml</factuurnummer>
    <betaling>Contant betaald</betaling>
    <naam>Klant</naam>
    <contactpersoon>Contactpersoon</contactpersoon>
    <telefoonnummer>tel</telefoonnummer>
    <adres>adres</adres>
    <postcode>8888aa</postcode>
    <woonplaats>woonplaats</woonplaats>
    <prijsexcl>529,72</prijsexcl>
    <btw>100,65</btw>
    <totaal>630,37</totaal>
  </divers>
  <factuurregel>
    <factuurnummer>Article.xml</factuurnummer>
    <aantal>1</aantal>
    <omschrijving>adssafd</omschrijving>
    <prijs>103,36</prijs>
    <btw>19</btw>
  </factuurregel>
  <factuurregel>
    <factuurnummer>Article.xml</factuurnummer>
    <aantal>1</aantal>
    <omschrijving>adssafd</omschrijving>
    <prijs>103,36</prijs>
    <btw>19</btw>
  </factuurregel>
  <factuurregel>
    <factuurnummer>Article.xml</factuurnummer>
    <aantal>1</aantal>
    <omschrijving>Nieuw</omschrijving>
    <prijs>100</prijs>
    <btw>19</btw>
  </factuurregel>
  <factuurregel>
    <factuurnummer>Article.xml</factuurnummer>
    <aantal>1</aantal>
    <omschrijving>Test 123</omschrijving>
    <prijs>123</prijs>
    <btw>19</btw>
  </factuurregel>
  <factuurregel>
    <factuurnummer>Article.xml</factuurnummer>
    <aantal>1</aantal>
    <omschrijving>Nieuw</omschrijving>
    <prijs>100</prijs>
    <btw>19</btw>
  </factuurregel>
</factuur>

In the divers place, ive got some items i need to use 1 time.
The factuurregel i need to use repeatly.
So i get something like this:

------
divers
------
factuurregel
factuurregel
factuurregel
factuurregel


But how can i make a wel formed report of this.
I tried some things, but it doesnt work well..

Is there a tutorial or something for it?

Greets,
Jelmer
 
Back
Top