Hello,
Is there a way to have a column in a table a fixed length?
Ex - say I want the first column to be 400 and the next column to be 200.
<table border="0" width="600">
<tr>
<td><u><b><font face="Tahoma" size="2">Line Item</font></b></u></td>
<td><u><b><font face="Tahoma" size="2">Authorized</font></b></u></td>
</tr>
<tr>
<td><font face="Tahoma" size="2"><%=Trim(RsLines("ReimbName"))%></font></td>
<td><font face="Tahoma" size="2"><%=FormatCurrency(RsLines("ReimbFunding"),0)%></font></td>
</tr>
</table>
THANKS!
Is there a way to have a column in a table a fixed length?
Ex - say I want the first column to be 400 and the next column to be 200.
<table border="0" width="600">
<tr>
<td><u><b><font face="Tahoma" size="2">Line Item</font></b></u></td>
<td><u><b><font face="Tahoma" size="2">Authorized</font></b></u></td>
</tr>
<tr>
<td><font face="Tahoma" size="2"><%=Trim(RsLines("ReimbName"))%></font></td>
<td><font face="Tahoma" size="2"><%=FormatCurrency(RsLines("ReimbFunding"),0)%></font></td>
</tr>
</table>
THANKS!