<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"><channel><category>pcsoft.fr.windev</category><copyright>Copyright 2026, PC SOFT</copyright><lastBuildDate>14 Nov 2018 19:28:54 Z</lastBuildDate><pubDate>10 Nov 2018 07:56:36 Z</pubDate><description>Je le trouve long et je souhaite exécuter le moins possible de requête pour la vitesse. j’exécute 12 fois la même requête, vu mon niveau de développement c'est tout ce que je puisse faire.&#13;
[code:wl]&#13;
refixeAnnee est une chaîne = DateLogiciel..Année&#13;
MD1,MD2,MD3,MD4,MD5,MD6,MD7,MD8,MD9,MD10,MD11,MD12 sont des Dates&#13;
MF1,MF2,MF3,MF4,MF5,MF6,MF7,MF8,MF9,dMF10,MF11,MF12 sont des Dates&#13;
sMJANVIER,sMFEVRIER,sMMARS,sMAVRIL,sMMAI,sMJUIN,sMJUILLET,sMAOUT,sMSEPTEMBRE,sMOCTOBRE,sMNOVEMBRE,sMDECEMBRE sont des chaînes&#13;
&#13;
MD1 = PrefixeAnnee+"0101"&#13;
MF1 = DernierJourDuMois(PrefixeAnnee+"0101")&#13;
MD2 = PrefixeAnnee+"0201"&#13;
MF2 = DernierJourDuMois(PrefixeAnnee+"0201")&#13;
MD3 = PrefixeAnnee+"0301"&#13;
MF3 = DernierJourDuMois(PrefixeAnnee+"0301")&#13;
MD4 = PrefixeAnnee+"0401"&#13;
MF4 = DernierJourDuMois(PrefixeAnnee+"0401")&#13;
MD5 = PrefixeAnnee+"0501"&#13;
MF5 = DernierJourDuMois(PrefixeAnnee+"0501")&#13;
MD6 = PrefixeAnnee+"0601"&#13;
MF6 = DernierJourDuMois(PrefixeAnnee+"0601")&#13;
MD7 = PrefixeAnnee+"0701"&#13;
MF7 = DernierJourDuMois(PrefixeAnnee+"0701")&#13;
MD8 = PrefixeAnnee+"0801"&#13;
MF8 = DernierJourDuMois(PrefixeAnnee+"0801")&#13;
MD9 = PrefixeAnnee+"0901"&#13;
MF9 = DernierJourDuMois(PrefixeAnnee+"0901")&#13;
MD10 = PrefixeAnnee+"1001"&#13;
dMF10 = DernierJourDuMois(PrefixeAnnee+"1001")&#13;
MD11 = PrefixeAnnee+"1101"&#13;
MF11 = DernierJourDuMois(PrefixeAnnee+"1101")&#13;
MD12 = PrefixeAnnee+"1201"&#13;
MF12 = DernierJourDuMois(PrefixeAnnee+"1201")&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD1,MF1)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD1,MF1)&#13;
sMJANVIER =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
grEtiquetteCatégorie(GRF_GrapheCA,1,"Janvier")&#13;
&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD2,MF2)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD2,MF2)&#13;
sMFEVRIER =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD3,MF3)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD3,MF3)&#13;
sMMARS =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD4,MF4)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD4,MF4)&#13;
sMAVRIL =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD5,MF5)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD5,MF5)&#13;
sMMAI =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD6,MF6)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD6,MF6)&#13;
sMJUIN =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD7,MF7)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD7,MF7)&#13;
sMJUILLET =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD8,MF8)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD8,MF8)&#13;
sMAOUT =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD9,MF9)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD9,MF9)&#13;
sMSEPTEMBRE =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD10,dMF10)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD10,dMF10)&#13;
sMOCTOBRE =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD11,MF11)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD11,MF11)&#13;
sMNOVEMBRE =REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
HExécuteRequête(REQ_CA_COMPTANT_JOURNEE,hRequêteDéfaut,MD12,MF12)&#13;
HExécuteRequête(REQ_CA_CREDIT_JOURNEE,hRequêteDéfaut,MD12,MF12)&#13;
sMDECEMBRE=REQ_CA_COMPTANT_JOURNEE.la_somme_TotalEncaissé+REQ_CA_CREDIT_JOURNEE.la_somme_MontantEncaissé&#13;
&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMJANVIER)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,1,"Janvier")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMFEVRIER)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,2,"Fevier")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMMARS)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,3,"Mars")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMAVRIL)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,4,"Avril")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMMAI)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,5,"Mai")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMJUIN)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,6,"Juin")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMJUILLET)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,7,"Juillet")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMAOUT)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,8,"Aout")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMSEPTEMBRE)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,9,"Septembre")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMOCTOBRE)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,10,"Octobre")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMNOVEMBRE)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,11,"Novembre")&#13;
grAjouteDonnée(GRF_GrapheCA,1,sMDECEMBRE)&#13;
grEtiquetteCatégorie(GRF_GrapheCA,12,"Decembre")&#13;
grDessine(GRF_GrapheCA)&#13;
&#13;
[/code]&#13;
&#13;
MERCI&#13;
&#13;
--&#13;
PS : I Love Windev</description><ttl>30</ttl><generator>WEBDEV</generator><language>fr_FR</language><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp</link><title>OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title><managingEditor>moderateur@pcsoft.fr (El moderador)</managingEditor><webMaster>webmaster@pcsoft.fr (El webmaster)</webMaster><item><author>Der§en</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221954/read.awp</comments><pubDate>14 Nov 2018 19:28:54 Z</pubDate><description>Sans être devant un PC pour valider ma proposition, j’aurai testé un truc du genre :&#13;
&#13;
[code:sql]&#13;
SELECT &#13;
VENTECAISSE.TypeVen…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221954/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221954/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>THINK</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221939/read.awp</comments><pubDate>14 Nov 2018 12:37:26 Z</pubDate><description>RogerCageot a écrit : &#13;
&gt; Mon 2ème cas est faux c'est&#13;
&gt; CAS MD2&lt;*&lt;DF2 :&#13;
&gt; &#13;
&#13;
:merci:&#13;
&#13;
--&#13;
PS : I Love Windev</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221939/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221939/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>vincent.papin</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221935/read.awp</comments><pubDate>14 Nov 2018 10:07:44 Z</pubDate><description>Mon 2ème cas est faux c'est &#13;
[code:wl]&#13;
CAS MD2&lt;*&lt;DF2 :&#13;
[/code]</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221935/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221935/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>vincent.papin</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221932/read.awp</comments><pubDate>14 Nov 2018 09:53:57 Z</pubDate><description>Bonjour,&#13;
&#13;
Il suffit d'enlever les dates dans la clause WHERE comme ceci :&#13;
[code:sql]&#13;
SELECT &#13;
VENTECAISSE.TypeVente AS TypeV…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221932/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221932/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>fabienbmonty</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221930/read.awp</comments><pubDate>14 Nov 2018 08:31:21 Z</pubDate><description>Mais comment il pourra traiter ça requête, on est plusieurs comme lui n’allant pas le niveau aboutit en programmation. J’ai auss…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221930/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221930/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>Philippe SB</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221926/read.awp</comments><pubDate>14 Nov 2018 08:19:15 Z</pubDate><description>Bonjour,&#13;
&#13;
Ben la requête est presque bonne, il te suffit d'enlever les conditions sur Date et TypeVente, et ta requête terenve…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221926/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221926/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>THINK</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221923/read.awp</comments><pubDate>14 Nov 2018 07:48:12 Z</pubDate><description>non pas que je ne veuille pas, j’étais juste un peu absent c'est jour ci .&#13;
La voila !&#13;
[code:sql]&#13;
SELECT &#13;
  VENTECAISSE.TypeV…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221923/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221923/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>Philippe SB</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221922/read.awp</comments><pubDate>14 Nov 2018 07:22:55 Z</pubDate><description>Etant donné qu'il n'a pas souhaité fournir sa requête ça va être compliqué de l'aider.&#13;
&#13;
--&#13;
Cordialement,&#13;
&#13;
Philippe SAINT-BE…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221922/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221922/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>Daryl</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221919/read.awp</comments><pubDate>14 Nov 2018 00:14:26 Z</pubDate><description>Salut Philippe,&#13;
&#13;
Tu as entièrement raison, je voulais juste simplifier son code.&#13;
Mais on est tous d'accord que c'est sa requê…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221919/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221919/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>Der§en</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221851/read.awp</comments><pubDate>11 Nov 2018 18:06:21 Z</pubDate><description>A voir ton code, la seule solution, c’est de revoir tes requêtes, et si je comprend bien ton besoin, je pense qu’il te faut just…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221851/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221851/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>Philippe SB</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221848/read.awp</comments><pubDate>11 Nov 2018 15:06:08 Z</pubDate><description>Bonjour,&#13;
&#13;
Je te confirme qu'exécuter 12 fois la même requête est une perte de temps. Avant toute chose, il te faudrait poster …</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221848/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221848/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item><item><author>Daryl</author><category>pcsoft.fr.windev</category><comments>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221847/read.awp</comments><pubDate>11 Nov 2018 11:53:48 Z</pubDate><description>Salut Think,&#13;
&#13;
Tu dois d'abord modifier tes requêtes pour en avoir qu'une seule puisque ton filtre est toujours le même pour le…</description><guid isPermaLink="true">https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221847/read.awp</guid><link>https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe-221847/read.awp</link><source url="https://forum.pcsoft.fr/es-ES/pcsoft.fr.windev/221837-optimisation-code-pour-statistique-graphe/read.awp">OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</source><title>Re: OPTIMISATION DE CODE POUR STATISTIQUE GRAPHE</title></item></channel></rss>
