Hi Vdodson, again I need your appreciable help.<br />
<br />
I have a table like this:<br />
<br />
Table Name Schools<br />
<br />
id<br />
schoolName<br />
pictureName<br />
<br />
Example:<br />
<br />
id schoolName pictureName<br />
1 public FOTO1.JPG<br />
1 public FOTO2.JPG<br />
...<br />
<br />
<br />
The pictures are in <a class='bbc_url' href='
http://localhost/xampp/proyecto/pictures'>http://localhost/xampp/proyecto/pictures</a><br />
<br />
and then, a do a Report with a Table with two columns like This:<br />
<br />
Id SchoolName Picture<br />
1 Public <br />
<br />
<br />
In the column Picture, i have a image element, and then, I'm trying to <br />
insert the image as a URL, but I put a expresion like this.<br />
<br />
"
http://localhost/xampp/proyecto/pictures/"+row["pictureName"]<br />
<br />
or like this, I take this from your example in:<br />
<br />
this.setURL("
http://localhost/xampp/proyecto/pictures/"+row["pictureName"] );<br />
<br />
<br />
but the Report dont found the image.<br />
<br />
in the field pictureName of a dataset, I only have the name of the file that contains the image.<br />
<br />
Thank you.