|
Posted by Rob on February 17, 2006, 12:23 pm
Please log in for more thread options
fabiano,
You can edit the receipt (xml file) and add another table below the
ReceiptFooterLines, create seperate Font entry and put your own custom text
in there.
You can even get a little fancier and create your own receipt variable and
have it appear in the Receipt Format section in Manager. That way you can
edit the text from in Manager rather than have it hard coded in the receipt.
Either way you are going to have to customize the receipt and create a new
table, in the PrintFooter sub and add a new Font.
<FONT name="MyFont">
<NAME> "Arial" </NAME>
<SIZE> 12 </SIZE>
<BOLD> False </BOLD>
<UNDERLINE> False </UNDERLINE>
<ITALIC> True </ITALIC>
<COLOR> vbBlack </COLOR>
<CPL> 44 </CPL>
</FONT>
and
<TABLE>
<BORDER> tbNone </BORDER>
<FONT> "MyFont" </FONT>
<COLUMNHEADER>
<ALIGNMENT> "^~" </ALIGNMENT>
<WIDTH> PageWidth </WIDTH>
<TEXT> "insert text here" </TEXT>
</COLUMNHEADER>
</TABLE>
Rob
> How can I make some of the Footer or header lines on the 40 column receipt
> stand out. In a larger or Bold text.
>
> I want to get peoples attent to go to our website for a promational
> marketing study.
>
> can some give example of what to insert in the xml of the receipt footer
> header portion.
>
>
|