<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.fr.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>9 May 2023 10:54:00 Z</lastBuildDate><pubDate>5 May 2023 15:49:52 Z</pubDate><description>Bonjour,&#13;
Je cherche à reproduire la même chose en windev.&#13;
&lt;?xml version='1.0' encoding='UTF-8'?&gt;&#13;
&lt;DataPreparation LcName='String' MCESTransform='@S_XXX.xsl'&gt;&#13;
&lt;Job Name='ANY_1_11_14-57-56' OutputMagazineQuantity='1'&gt;&#13;
&lt;Cards&gt;&#13;
&lt;Card Name='1'&gt;&#13;
&lt;DataFields&gt;&#13;
&lt;DataField Name='ID'&gt;&lt;/DataField&gt;&#13;
&lt;DataField Name='DISPLAYED_PORTRAIT'&gt;4c97e0e1bfb01.JPG&lt;/DataField&gt;&#13;
&lt;DataField Name='IMMATRICULATION_NUMBER'&gt;BF38420053&lt;/DataField&gt;&#13;
&lt;DataField Name='LAST_NAME'&gt;SOME&lt;/DataField&gt;&#13;
&lt;DataField Name='FIRST_NAME'&gt;JUDI&lt;/DataField&gt;&#13;
&lt;DataField Name='GENDER'&gt;M&lt;/DataField&gt;&#13;
&lt;DataField Name='DATE_OF_BIRTH'&gt;01.07.1997&lt;/DataField&gt;&#13;
&lt;DataField Name='PLACE_OF_BIRTH'&gt;ATTI&lt;/DataField&gt;&#13;
&lt;DataField Name='JOB'&gt;OUVRIER &lt;/DataField&gt;&#13;
&lt;DataField Name='ISSUE_DATE'&gt;19/03/2023&lt;/DataField&gt;&#13;
&lt;DataField Name='VALIDITY_DATE'&gt;18/03/2028&lt;/DataField&gt;&#13;
&lt;DataField Name='PLACE_OF_ISSUE'&gt;AB&lt;/DataField&gt;&#13;
&lt;DataField Name='PLACE_OF_DELIVERY'&gt;ANY&lt;/DataField&gt;&#13;
&lt;DataField Name='DISPLAYED_SIGNATURE'&gt;4c97e0e1bf.JPG&lt;/DataField&gt;&#13;
&lt;DataField Name='PLACE_OF_RESIDENCE'&gt;ATTINGUIE &lt;/DataField&gt;&#13;
&lt;DataField Name='ADR_TEL'&gt;07499&lt;/DataField&gt;&#13;
&lt;DataField Name='NAME_FATHER'&gt; PIERRE&lt;/DataField&gt;&#13;
&lt;DataField Name='NAME_MOTHER'&gt;MANSOZO &lt;/DataField&gt;&#13;
&lt;DataField Name='CONTACT_PERSON'&gt; PIERRE&lt;/DataField&gt;&#13;
&lt;DataField Name='TEL_CONTACT_PERSON'&gt;0749689&lt;/DataField&gt;&#13;
&lt;DataField Name='SIZE'&gt;175&lt;/DataField&gt;&#13;
&lt;DataField Name='BLOOD_GROUP'&gt;&lt;/DataField&gt;&#13;
&lt;DataField Name='DATE_OF_BIRTH_FATHER'&gt;01.01.1900&lt;/DataField&gt;&#13;
&lt;DataField Name='DATE_OF_BIRTH_MOTHER'&gt;01.01.1900&lt;/DataField&gt;&#13;
&lt;DataField Name='AUTHORITY_SIGNATURE'&gt;AB.JPG&lt;/DataField&gt;&#13;
&lt;DataField Name='CODEBARRE'&gt;4c97e0e1bfb01.JPG&lt;/DataField&gt;&#13;
&lt;/DataFields&gt;&#13;
&lt;DocumentNumber&gt;100000001&lt;/DocumentNumber&gt;&#13;
&lt;/Card&gt;&#13;
&lt;/Cards&gt;&#13;
&lt;/Job&gt;&#13;
&lt;/DataPreparation&gt;&#13;
&#13;
j'ai écris ce code&#13;
[code:wl]&#13;
sNBreligne est une chaine = TableOccurrence(TABLE_ListeDemande)&#13;
MonXml est une chaine = "xmltest"&#13;
XMLDocument(MonXml, "")&#13;
XMLAjouteFils(MonXml,"Datapreparation","",Vrai)&#13;
XMLAjouteAttribut(MonXml, "LcName","String")&#13;
XMLAjouteAttribut(MonXml, "MCESTransform","@SC.xsl")&#13;
XMLAjouteFils(MonXml,"Job","",vrai)&#13;
XMLAjouteAttribut(MonXml, "Name",TABLE_ListeABJ.COL_Lot +"_"+DateDuJour()+"_"+HeureSys())&#13;
XMLAjouteAttribut(MonXml, "OutputMagazineQuantity",sNBreligne)&#13;
XMLAjouteFils(MonXml, "Cards","",vrai)&#13;
&#13;
	pour i = 1_A_ val(sNBreligne)&#13;
	&#13;
		XMLAjouteFils(MonXml, "Card","",Vrai)&#13;
         	attribut_card est une chaine = i&#13;
		XMLAjouteAttribut(MonXml, "name",attribut_card)&#13;
		XMLAjouteFils(MonXml, "DataFields","",Vrai)&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Id[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "ID")		&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Id[i]+"P.JPG")&#13;
		XMLAjouteAttribut(MonXml, "name", "DISPLAYED_PORTRAIT")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_NumBF[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "IMMATRICULATION_NUMBER")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Nom[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "LAST_NAME")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Prenoms[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "FIRST_NAME")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Genre[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "GENDER")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_datenais[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "DATE_OF_BIRTH")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_LeiuNaiss[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "PLACE_OF_BIRTH")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_profession[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "JOB")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_DateDemande[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "ISSUE_DATE")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_dateValidite[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "VALIDITY_DATE")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_ConsulatEtab[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "PLACE_OF_ISSUE")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_commue[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "PLACE_OF_DELIVERY")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Id[i]+"S.JPG")&#13;
		XMLAjouteAttribut(MonXml, "name", "DISPLAYED_SIGNATURE")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Lieuresid_Act[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "PLACE_OF_RESIDENCE")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_AdressePers[i])&#13;
         	XMLAjouteAttribut(MonXml, "name", "ADR_TEL")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_NomPere[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "NAME_FATHER")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_NomMere[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "NAME_MOTHER")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_PersoneAcontacter[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "CONTACT_PERSON")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_ContactPersonne[i])&#13;
	        XMLAjouteAttribut(MonXml, "name", "TEL_CONTACT_PERSON")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Taille[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "SIZE")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Groupsang[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "BLOOD_GROUP")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_ddn_pere[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "DATE_OF_BIRTH_FATHER")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_ddn_Mere[i])&#13;
		XMLAjouteAttribut(MonXml, "name", "DATE_OF_BIRTH_MOTHER")&#13;
		XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_ConsulatEtab[i]+".JPG")&#13;
		XMLAjouteAttribut(MonXml, "name", "AUTHORITY_SIGNATURE")&#13;
	XMLAjouteFils(MonXml, "DataField",TABLE_ListeDemande.COL_Id[i]+"_2D.JPG")&#13;
		XMLAjouteAttribut(MonXml, "name", "CODEBARRE")&#13;
    XMLParent(MonXml)&#13;
		XMLAjouteFils(MonXml,"DocumentNumber",TABLE_ListeDemande.COL_numserie[i])&#13;
	FIN&#13;
	&#13;
	sInfoXML  est une chaîne = XMLConstruitChaîne(MonXml,XMLMiseEnForme)&#13;
	&#13;
XMLTermine(MonXml) // Libère le document XML&#13;
	fSauveTexte(ComplèteRep(fRepExe()) + "testessai.xml",sInfoXML) //// Création du fichier XML&#13;
&#13;
[/code]&#13;
&#13;
qui me donne le resultat suivant&#13;
&#13;
&lt;?xml version="1.0" encoding="ISO-8859-1"?&gt;&#13;
&lt;Datapreparation LcName="String" MCESTransform="@SC.xsl"&gt;&#13;
  &lt;Job Name="LOT_1_20230424_NOE_20230503_12092222" OutputMagazineQuantity="2"&gt;&#13;
    &lt;Cards&gt;&#13;
      &lt;Card name="1"&gt;&#13;
        &lt;DataFields name="ID" name="DISPLAYED_PORTRAIT" name="IMMATRICULATION_NUMBER" name="LAST_NAME" name="FIRST_NAME" name="GENDER" name="DATE_OF_BIRTH" name="PLACE_OF_BIRTH" name="JOB" name="ISSUE_DATE" name="VALIDITY_DATE" name="PLACE_OF_ISSUE" name="PLACE_OF_DELIVERY" name="DISPLAYED_SIGNATURE" name="PLACE_OF_RESIDENCE" name="ADR_TEL" name="NAME_FATHER" name="NAME_MOTHER" name="CONTACT_PERSON" name="TEL_CONTACT_PERSON" name="SIZE" name="BLOOD_GROUP" name="DATE_OF_BIRTH_FATHER" name="DATE_OF_BIRTH_MOTHER" name="AUTHORITY_SIGNATURE" name="CODEBARRE"&gt;&#13;
          &lt;DataField/&gt;&#13;
          &lt;DataField&gt;f16bfbff4a7a0&lt;/DataField&gt;&#13;
          &lt;DataField&gt;f16bfbff4a7a0.JPG&lt;/DataField&gt;&#13;
          &lt;DataField&gt;BF38400100                             &lt;/DataField&gt;&#13;
          &lt;DataField&gt;BAMO&lt;/DataField&gt;&#13;
          &lt;DataField&gt;BOUMA&lt;/DataField&gt;&#13;
          &lt;DataField&gt;M&lt;/DataField&gt;&#13;
          &lt;DataField&gt;19740101000000000&lt;/DataField&gt;&#13;
          &lt;DataField&gt;YAO-AKA&lt;/DataField&gt;&#13;
          &lt;DataField&gt;PLANT&lt;/DataField&gt;&#13;
          &lt;DataField&gt;20220801000000000&lt;/DataField&gt;&#13;
          &lt;DataField&gt;20270801&lt;/DataField&gt;&#13;
          &lt;DataField&gt;AB&lt;/DataField&gt;&#13;
          &lt;DataField&gt;NOE&lt;/DataField&gt;&#13;
          &lt;DataField&gt;f16bfbff4a7a0.JPG&lt;/DataField&gt;&#13;
          &lt;DataField&gt;YAO AKAKRO&lt;/DataField&gt;&#13;
          &lt;DataField&gt;012920&lt;/DataField&gt;&#13;
          &lt;DataField&gt;BAUNI IS&lt;/DataField&gt;&#13;
          &lt;DataField&gt;KAIE ENA&lt;/DataField&gt;&#13;
          &lt;DataField&gt;BANI PUL &lt;/DataField&gt;&#13;
          &lt;DataField&gt;014720&lt;/DataField&gt;&#13;
          &lt;DataField&gt;169&lt;/DataField&gt;&#13;
          &lt;DataField/&gt;&#13;
          &lt;DataField&gt;19000101000000000&lt;/DataField&gt;&#13;
          &lt;DataField&gt;19000101000000000&lt;/DataField&gt;&#13;
          &lt;DataField&gt;ABI.JPG&lt;/DataField&gt;&#13;
          &lt;DataField&gt;f16bfbff4a7a.JPG&lt;/DataField&gt;&#13;
        &lt;/DataFields&gt;&#13;
        &lt;DocumentNumber&gt;1000759581                                   &lt;/DocumentNumber&gt;      &#13;
      &lt;/Card&gt;&#13;
    &lt;/Cards&gt;&#13;
  &lt;/Job&gt;&#13;
&lt;/Datapreparation&gt;&#13;
&#13;
Je constate que les attributs que j'ajoute dans la balise &lt;DataField&gt; n'est pas insérer là où il le faut.&#13;
Je souhaite votre aide afin d'améliorer mon code Windev afin de pouvoir reproduire l'exemple.&#13;
Si je peux aussi avoir d'autre proposition qui m'aiderons à reproduire l'exemple.&#13;
&#13;
En vous remerciant.&#13;
&#13;
--&#13;
plus facile d’être en équipe</description><ttl>30</ttl><generator>WEBDEV</generator><language>fr_FR</language><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp</link><title>création XML</title><managingEditor>moderateur@pcsoft.fr (Le modérateur)</managingEditor><webMaster>webmaster@pcsoft.fr (Le Webmaster)</webMaster><item><author>Franckdev</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264479/read.awp</comments><pubDate>9 May 2023 10:54:00 Z</pubDate><description>Jurassic Pork a écrit : &#13;
&gt; Hello,&#13;
&gt; il semble y a voir des problèmes dans l'écriture des balises Datafield lorsque l'on met la…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264479/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264479/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Philippe SB</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264478/read.awp</comments><pubDate>9 May 2023 09:05:05 Z</pubDate><description>Ensuite créer une 2ème &lt;Card&gt; devient tout simple en rajoutant une boucle supplémentaire&#13;
&#13;
--&#13;
Cordialement,&#13;
&#13;
Philippe SAINT-…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264478/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264478/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Philippe SB</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264477/read.awp</comments><pubDate>9 May 2023 09:02:44 Z</pubDate><description>Pe[code:wl]&#13;
&#13;
[/code]rso avec mon code j'obtiens ce résultat qui correspond tout à fait à ce qui est  souhaité comme résultat à…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264477/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264477/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Jurassic Pork</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264471/read.awp</comments><pubDate>8 May 2023 16:38:53 Z</pubDate><description>Hello,&#13;
il semble y a voir des problèmes dans l'écriture des balises Datafield lorsque l'on met la boucle d'écriture de ces bali…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264471/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264471/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Pierre</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264468/read.awp</comments><pubDate>8 May 2023 15:18:58 Z</pubDate><description>Bonjour,&#13;
&#13;
Le code&#13;
&#13;
 xml_noeud est un WL.xmlNoeud dynamique = MonDocXML.DataPreparation.Job.Cards.Card.DataFields&#13;
x est un e…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264468/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264468/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Franckdev</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264467/read.awp</comments><pubDate>8 May 2023 11:57:45 Z</pubDate><description>Jurassic Pork a écrit : &#13;
&gt; Hello,&#13;
&gt; il faut passer par un tableau pour générer les balises Datafield.&#13;
&gt; Exemple :&#13;
&gt; 1 - impo…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264467/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264467/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Franckdev</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264447/read.awp</comments><pubDate>6 May 2023 15:35:19 Z</pubDate><description>Jurassic Pork a écrit : &#13;
&gt; Hello,&#13;
&gt; il faut passer par un tableau pour générer les balises Datafield.&#13;
&gt; Exemple :&#13;
&gt; 1 - impo…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264447/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264447/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>404 ERROR</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264445/read.awp</comments><pubDate>6 May 2023 12:36:00 Z</pubDate><description>@Jurassic Pork&#13;
&#13;
Tes réponses sont d'un autre niveau franchement chapeau :merci:&#13;
&#13;
--&#13;
#DKR</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264445/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264445/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Jurassic Pork</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264444/read.awp</comments><pubDate>6 May 2023 08:24:29 Z</pubDate><description>Hello,&#13;
il faut passer par un tableau pour générer les balises Datafield.&#13;
Exemple :&#13;
1 - importer le xml modèle dans Descriptio…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264444/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264444/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Franckdev</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264438/read.awp</comments><pubDate>5 May 2023 17:27:48 Z</pubDate><description>Philippe SB a écrit : &#13;
&gt; Bonjour,&#13;
&gt; &#13;
&gt; Tu devrais plutôt faire comme ça&#13;
&gt; MonXml est un xmlDocument&#13;
&gt; MonNoeud est un xmlNo…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264438/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264438/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item><item><author>Philippe SB</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264436/read.awp</comments><pubDate>5 May 2023 16:52:16 Z</pubDate><description>Bonjour,&#13;
&#13;
Tu devrais plutôt faire comme ça&#13;
[code:wl]&#13;
MonXml		est un xmlDocument&#13;
MonNoeud est un xmlNoeud&#13;
&#13;
MonXml.DataPrep…</description><guid isPermaLink="true">https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264436/read.awp</guid><link>https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml-264436/read.awp</link><source url="https://forum.pcsoft.fr/fr-FR/pcsoft.fr.windev/264431-creation-xml/read.awp">création XML</source><title>Re: création XML</title></item></channel></rss>
