Hi Ryan, these are footerlines so I have created additional footer lines in the Attributes section like this:
<SET name="FooterLine1" custom="true" description="Footer Line 1" type="vbString">"x ___________________________________________ " </SET>
<SET name="FooterLine2" custom="true" description="Footer Line 2" type="vbString"> "NO RETURN, EXCHANGE OR REFUND ON LIFT TICKETS" </SET>
<SET name="FooterLine3" custom="true" description="Footer Line 3" type="vbString">"ALL SALES ARE FINAL."</SET>
<SET name="FooterLine4" custom="true" description="Footer Line 4" type="vbString">"RETURNS OR EXCHANGES WITHIN 7 DAYS IF THE"</SET>
<SET name="FooterLine5" custom="true" description="Footer Line 5" type="vbString">"PRODUCT HAS NOT BEEN USED OR INSTALLED ARE"</SET>
<SET name="FooterLine6" custom="true" description="Footer Line 6" type="vbString">"SUBJECT TO A 15% RESTOCKING FEE. NO REFUND "</SET>
<SET name="FooterLine7" custom="true" description="Footer Line 7" type="vbString">"OR EXCHANGE ON SPECIAL ORDERED ITEMS. ALL"</SET>
<SET name="FooterLine8" custom="true" description="Footer Line 8" type="vbString">"WARRANTIES ON PRODUCTS ARE BY MANUFACTURERS"</SET>
<SET name="FooterLine9" custom="true" description="Footer Line 9" type="vbString">"ONLY. WE MAKE NO REPRESENTATION OF SPECIFIC"</SET>
<SET name="FooterLine10" custom="true" description="Footer Line 10" type="vbString">"SUITABILITY OF PURPOSE. PLEASE NOTE THAT CAR"</SET>
<SET name="FooterLine11" custom="true" description="Footer Line 11" type="vbString">"RACK/HITCH INSTALLATIONS ARE DONE AS A"</SET>
<SET name="FooterLine12" custom="true" description="Footer Line 12" type="vbString">"COURTESY ONLY. WE ARE NOT RESPONSIBLE FOR "</SET>
<SET name="FooterLine13" custom="true" description="Footer Line 13" type="vbString">"DAMAGES. RACKS/HITCHES CAN AND WILL DAMAGE"</SET>
<SET name="FooterLine14" custom="true" description="Footer Line 14" type="vbString">"YOUR VEHICLE. PLEASE CHECK YOUR RACK/HITCH "</SET>
<SET name="FooterLine15" custom="true" description="Footer Line 15" type="vbString">"AT REGULAR INTERVALS AND ENSURE THAT YOUR "</SET>
<SET name="FooterLine16" custom="true" description="Footer Line 16" type="vbString">""</SET>
<SET name="FooterLine17" custom="true" description="Footer Line 17" type="vbString">"RACK/HITCH AND LOAD ARE PROPERLY SECURED."</SET>
<SET name="FooterLine18" custom="true" description="Footer Line 18" type="vbString">"ON ACCOUNT TERMS NET 30 DAYS"</SET>
I made Footer Line 16 blank for this example.
Then there is the second place on the receipt they are referenced (under the SUB: PrintFooter section) here's a snippet from that section:
<SUB name="PrintFooter">
<!-- Print Footer Lines -->
<TABLE>
<FONT> "Small" </FONT>
<BORDER> tbNone </BORDER>
<COLUMNHEADER>
<ALIGNMENT> "^~" </ALIGNMENT>
<WIDTH> PageWidth </WIDTH>
</COLUMNHEADER>
<IF>
<CONDITION> Len(FooterLine1) </CONDITION>
<THEN>
<ROW> FooterLine1 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine2) </CONDITION>
<THEN>
<ROW> FooterLine2 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine3) </CONDITION>
<THEN>
<ROW> FooterLine3 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine4) </CONDITION>
<THEN>
<ROW> FooterLine4 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine5) </CONDITION>
<THEN>
<ROW> FooterLine5 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine6) </CONDITION>
<THEN>
<ROW> FooterLine6 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine7) </CONDITION>
<THEN>
<ROW> FooterLine7 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine8) </CONDITION>
<THEN>
<ROW> FooterLine8 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine9) </CONDITION>
<THEN>
<ROW> FooterLine9 </ROW>
</THEN>
</IF>
<IF>
<CONDITION> Len(FooterLine10) </CONDITION>
<THEN>
<ROW> FooterLine10 </ROW>
</THEN>
and this goes on until footer line 18
Please note that footerline 16 does not print a space on this receipt it is simply skipped over, I would imagine it has something to do with the formatting in the SUB: Footerline section
Thanks again,
Devon