Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Html title in fex 1

Status
Not open for further replies.
Apr 28, 2003
35
IN
Hi this is like solution for the ? i have posted but still i have something for this to work.

instead of having a webfocus heading im going to build a html table with image and have the report title and the rundate adjacent to it in another table , but the thing is the report title and the other parameters is dynamic like i will have the html table with holder for image and title and rundate built and im going to call that in every report , no i have to provide the title name as parameter to the html table , i have the value assigned to
&rep1
how will i use this asa variable in html table like ..



-HTMLFORM BEGIN
<div align=&quot;left&quot;>
<table border=&quot;0&quot; width=&quot;266&quot; height=&quot;89&quot;>
<tr>
<td width=&quot;133&quot; height=&quot;45&quot; rowspan=&quot;2&quot;>IMAGE</td>
<td width=&quot;133&quot; height=&quot;23&quot;>
-HTMLFORM END
&RPTTITLE1
-HTMLFORM BEGIN
</td>
</tr>
<tr>
<td width=&quot;133&quot; height=&quot;22&quot;>

-HTMLFORM END
&RPTTITLE2
-HTMLFORM BEGIN

</td>
</tr>

</table>
</div>
-HTMLFORM END

is that right , im getting no output in the place whr the title shld come .
mail me at ganesh.siddhamalli@crowncastle.com.
 
Hi Ganesh,

You don't need to write

[tt]-HTMLFORM END
&RPTTITLE2
-HTMLFORM BEGIN
[/tt]

You can use the variable &RPTITLE2 within -HTMLFORM BEGIN and -HTMLFORM END like this:

[tt]-HTMLFORM BEGIN
<div align=&quot;left&quot;>
<table border=&quot;0&quot; width=&quot;266&quot; height=&quot;89&quot;>
<tr>
<td width=&quot;133&quot; height=&quot;45&quot; rowspan=&quot;2&quot;>IMAGE</td>
<td width=&quot;133&quot; height=&quot;23&quot;>
&RPTTITLE1
</td>
</tr>
<tr>
<td width=&quot;133&quot; height=&quot;22&quot;>
&RPTTITLE2
</td>
</tr>
</table>
</div>
-HTMLFORM END
[/tt]

Eva
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top