Bonjour à tous,

Une fois encore j'ai besoin de vos lumières!!

Pour mieux comprendre voila le décors :
Pour le forum d'un amis je tente d'y inclure un tableau (html) avec des listes de graines et des photos. Pour me facilité la vie et dans le but d'en apprendre toujours plus je me suis dit pourquoi ne pas faire une macro (inspirée d'une base trouvée sur le net) qui transcrirait un tableau Excel 2007 en HTML (beaucoup plus facile à dire qu'à faire!).

Le projet est à 90% aboutis mais il me reste un problème : une fois que le code est copié dans le topic, il y a une grande marque qui se crée au début!? Et je ne parviens pas à comprendre pourquoi!

Que faire? pourriez-vous me donner un indice?

Voila le code source :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<table border=1 bgcolor=#C0C0C0>
<tr height='1'>
<td width='18%'>&nbsp;</td>
<td width='16%'>&nbsp;</td>
<td width='15%'>&nbsp;</td>
<td width='17%'>&nbsp;</td>
<td width='34%'>&nbsp;</td>
</tr>
<tr>
<td  bgcolor='#008000' align='center'><font color='#FFFFFF'><big><b>Nom latin</b></big></font></td>
<td  bgcolor='#008000' align='center'><font color='#FFFFFF'><big><b>Nom commun</b></big></font></td>
<td  bgcolor='#008000' align='center'><font color='#FFFFFF'><big><b>Poids moyen des graines</b></big></font></td>
<td  bgcolor='#008000' align='center'><font color='#FFFFFF'><big><b>Valeures nutritives</b></big></font></td>
<td  bgcolor='#008000' align='center'><font color='#FFFFFF'><big><b>Photo</b></big></font></td>
</tr>
<tr>
<td  align='center'><big>Aira caryophyllea </big></td>
<td  align='center'><big>Canche caryophyllée </big></td>
<td  align='center'><big>0.2-0.4 mg</big></td>
<td  align='right'>&nbsp;</td>
<td  align='center'> </td>
</tr>
<tr>
<td  align='center'><big>Allium sp. </big></td>
<td  align='center'><big>Ail</big></td>
<td  align='center'><big>6-10 mg</big></td>
<td  align='right'>&nbsp;</td>
<td  align='center'> </td>
</tr>
<tr>
<td  align='center'><big>Andropogon sp. </big></td>
<td  align='center'><big>Barbon de Gérard</big></td>
<td  align='center'><big>2-5 mg</big></td>
<td  align='right'>&nbsp;</td>
<td  align='center'> </td>
</tr>
<tr>
<td  align='center'><big>Avena fatua</big></td>
<td  align='center'><big>Folle avoine </big></td>
<td  align='center'><big>2-5 mg</big></td>
<td  align='right'>&nbsp;</td>
<td  align='center'> </td>
</tr>
<tr>
<td  align='center'><big>Avena Sativa</big></td>
<td  align='center'><big>Avoine décortiquée</big></td>
<td  align='center'><big>?</big></td>
<td >gras (lipides) : 2.2%
protéine (protides) : 5.4%
fibres : 4.9%
vitamine : -
minéraux : -</td>
<td  align='center'> </td>
</tr>
<tr>
<td  align='center'><big>Brachypodium ramosum</big></td>
<td  align='center'><big>Herbacée</big></td>
<td  align='center'><big>0.2-0.4 mg</big></td>
<td  align='right'>&nbsp;</td>
<td  align='center'> </td>
</tr>