I've created a new database linked directly to the order table on our mysql server, and one of the fields in the database contains a line item detail of each customers order, formatted as below:
<p><b>Invoice # 14494</b><br>
<table bgcolor="#999999" width="95%">
<tr bgcolor="#cccccc">
<td class=jfont><b> Item #</b></td>
<td class=jfont><b>Artist</b></td>
<td class=jfont><b>Title</b></td>
<td class=jfont><b>Format</b></td>
<td class=jfont><b><nobr>Unit Price<nobr></b></td>
<td class=jfont><b>Qty</b></td>
How do I get this text to show as formatted in the text box of my form? I've tried a couple different controls, but the text still shows as above.
<p><b>Invoice # 14494</b><br>
<table bgcolor="#999999" width="95%">
<tr bgcolor="#cccccc">
<td class=jfont><b> Item #</b></td>
<td class=jfont><b>Artist</b></td>
<td class=jfont><b>Title</b></td>
<td class=jfont><b>Format</b></td>
<td class=jfont><b><nobr>Unit Price<nobr></b></td>
<td class=jfont><b>Qty</b></td>
How do I get this text to show as formatted in the text box of my form? I've tried a couple different controls, but the text still shows as above.