Tiens je remonte un p'tit coup ce sujet pour savoir si quelqu'un a la fameuse requête sql pour imprimer les revues siouplé ? Merci
Je ne suis pas un spécialiste, mais dans ce forum j'ai trouvé quelques éléments de réponse....
En utilisant BDGTools avec le modéle suivant:
[code:1:0b100d5afa]
<html>
<!--
BDGTOOLS V2.6
MODELE : REVUES
OBJECTIF : Rapport sur toutes les revues présentes dans la base avec leurs couvertures sur 1 colonne.
TEXTE DE LA REQUETE :
<DEBUT_REQUETE>
SELECT * FROM REVUES ORDER BY NOMREVUE, NUM
<FIN_REQUETE>
//-->
<head>
<SCRIPT LANGUAGE="JavaScript">
<!--
function PopupImage(img) {
titre="Popup Image : " + img;
w=open("",'image','width=500,height=500,toolbar=no,scrollbars=yes,resizable=yes');
w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>");
w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+12,document.images[0].height+30); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
w.document.write("<BODY onload='checksize()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><IMG src='"+img+"' border=0>");
w.document.write("");
w.document.write("</BODY></HTML>");
w.document.close();
}
//-->
</SCRIPT>
<style TYPE="text/css">
text,body,p,div,span,th,td,ul,li { FONT-SIZE: 12pt; FONT-FAMILY: Trebuchet MS, Verdana, Arial, Helvetica, sans-serif; color: black; background: white; }
HR { color: red; }
A:link { COLOR: #003399; background: white; }
A:visited { COLOR: #003399; background: white; }
A:hover { COLOR: #CC0000; background: white; }
A:active { COLOR: #CC0000; background: white; }
td.blk { color: white; background: blue; border: solid; border-color: #6495ED; }
table.blk { color: black; background: blue; border: solid; border-color: white; border-width: thin; }
table.lgt { color: black; background: blue; border: solid; border-width: thin; border-color: #F5F5F5; }
td.lgt { color: black; background: #F0FFFF; border: solid; border-width: thin; border-color: #6495ED; }
p.title { font-size: 18pt; font-weight: bold; }
</style></head><body>
<H1>Ma collection de Revues BD</H1>
<strong>Nombre de revues: $$INFO_ELEMENTS </strong></p>
<P>
<table WIDTH=80% class="blk" border="1" cellspacing="0" cellpadding="5">
<tr>
<td class="blk" nowrap>Couverture</td>
<td class="blk" nowrap>Titre</td>
<td class="blk" nowrap>N°</td>
<td class="blk" nowrap>Editeur</td>
<td class="blk" nowrap>Date</td>
<td class="blk" nowrap>Prix d'achat</td>
</tr>
$$BALISE_DEBUT
<tr>
<td class="lgt">$$CHAMP_COUVERTURE </td>
<td class="lgt"><b>$$CHAMP_NOMREVUE </b></td>
<td class="lgt"><b>$$CHAMP_NUM </b></td>
<td class="lgt">$$CHAMP_EDITEUR </td>
<td class="lgt">$$CHAMP_DATE </td>
<td class="lgt">$$CHAMP_PRIXACHAT € </td>
</tr>
$$BALISE_FIN
</table><p>
<strong>Base : $$INFO_BASE</strong></p>
<p>Catalogue créé le $$INFO_XDATE à $$INFO_XHEURE avec BDGTools.</p>
</body></html>
[/code:1:0b100d5afa]
La requete est dans ce source, avec BDGTools je génére ainsi une page HTML avec mes revues....
Avis aux amateurs pour proposer d'autres solutions....