<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — How print invoice in  1/2 letter size page.]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=2796</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=2796&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in How print invoice in  1/2 letter size page..]]></description>
		<lastBuildDate>Fri, 12 Dec 2014 00:25:55 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21735#p21735</link>
			<description><![CDATA[<p>I wouldn&#039;t bother with A5. Even if I wanted to print the documents in A5 format, I would generate them in A4 and scale the file down either when saving it or (preferably) when it goes to the printer.</p><p>Have you looked at the usual tools for pdf and ps manipulation? pdftk, gs and the like?</p>]]></description>
			<author><![CDATA[null@example.com (tm)]]></author>
			<pubDate>Fri, 12 Dec 2014 00:25:55 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21735#p21735</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21734#p21734</link>
			<description><![CDATA[<p>Any news about this A5 landscape thing,<br />I did not manage to make it work yet<br />Omar</p>]]></description>
			<author><![CDATA[null@example.com (obahey)]]></author>
			<pubDate>Thu, 11 Dec 2014 23:28:56 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21734#p21734</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=14791#p14791</link>
			<description><![CDATA[<p>Lines 64-70 of reporting/includes/class.pdf.inc are:</p><div class="codebox"><pre><code>class Cpdf extends FPDI {

    function Cpdf($pageSize=&#039;A4&#039;, $lang=null, $pageOrientation=&#039;P&#039;)
    {
        $this-&gt;TCPDF($pageOrientation, &#039;pt&#039;, $pageSize);//, $uni, $enc);
        $this-&gt;SetLang($lang);
        $this-&gt;setPrintHeader(false);</code></pre></div><p>Line 68 shows the declaration of size units as &#039;pt&#039;.</p><p>Also the default $pageSize=&#039;A4&#039; which should correctly be overridden by whatever declaration or setting is given at instantiation time. Hence check the various reports as to how a &quot;new Cpdf&quot; instance is created - whether the default isallowed to be assumed or it is passed on properly as a variable.</p><p>Lines 104-110 declare the encodings - see if they are an issue as well.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Thu, 27 Dec 2012 14:52:54 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=14791#p14791</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=14785#p14785</link>
			<description><![CDATA[<p>thank you for the quick respose, </p><p>dunno about this &quot;Also have a look at line 66 in reporting/includes/class.pdf.inc.&quot;</p><p>but no success, print inv, page seem like resized, but the content is cut off, <br />where I can modify for inv pdf format to match with new paper size?</p><p>--<br />I have changed file config.php<br />$pagesizes&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = array(&quot;Letter&quot;, &quot;A4&quot;, &quot;A5&quot;); // default PDF pagesize</p><p>and pdf_report.php<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; case &#039;A5&#039;:<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Portrait<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($orientation == &#039;P&#039;)<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;pageWidth=421;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;pageHeight=595;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (!isset($margins))<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;topMargin=40;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;bottomMargin=30;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;leftMargin=40;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;rightMargin=30;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // Landscape<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;pageWidth=595;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;pageHeight=421;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (!isset($margins))<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; {<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;topMargin=30;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;bottomMargin=30;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;leftMargin=40;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;rightMargin=30;<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; break;</p>]]></description>
			<author><![CDATA[null@example.com (ichtus)]]></author>
			<pubDate>Wed, 26 Dec 2012 10:34:44 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=14785#p14785</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=14783#p14783</link>
			<description><![CDATA[<p>A5 = half of A4</p><p>Line 4178 in <strong>reporting/includes/Workbook.php</strong> states:<br /></p><div class="quotebox"><blockquote><p>Set the paper type. Ex. 1 = US Letter, 9 = A4</p></blockquote></div><p>Line 1111 of <strong>reporting/includes/tcpdf.php</strong> has most paper formats listed.</p><p>Lines 94-210 of <strong>reporting/includes/pdf_report.inc</strong> has the currently used values for PDF A4 and Letter sizes - value in mm times 4 - as the smallest resolution available for print. The other values can be taken from the repgen project at sourceforge listed here for completeness:<br /></p><div class="codebox"><pre><code>$p_formate = array(&quot;A4&quot;=&gt;&quot;595|842&quot;,
        &quot;A3&quot;=&gt;&quot;842|1190&quot;,
        &quot;A5&quot;=&gt;&quot;421|595&quot;,
        &quot;4A0&quot;=&gt;&quot;4767.87|6740.79&quot;,
        &quot;2A0&quot;=&gt;&quot;3370.39|4767.87&quot;,
        &quot;A0&quot;=&gt;&quot;2383.94|3370.39&quot;,
        &quot;A1&quot;=&gt;&quot;1683.94|3370.39&quot;,
        &quot;A2&quot;=&gt;&quot;1190.55|1683.78&quot;,
        &quot;A6&quot;=&gt;&quot;297.64|419.53&quot;,
        &quot;A7&quot;=&gt;&quot;209.76|297.64&quot;,
        &quot;A8&quot;=&gt;&quot;147.40|209.76&quot;,
        &quot;A9&quot;=&gt;&quot;104.88|147.40&quot;,
        &quot;A10&quot;=&gt;&quot;73.70|104.88&quot;,
        &quot;B0&quot;=&gt;&quot;2834.65|4008.19&quot;,
        &quot;B1&quot;=&gt;&quot;2004.09|2834.65&quot;,
        &quot;B2&quot;=&gt;&quot;1417.32|2004.09&quot;,
        &quot;B3&quot;=&gt;&quot;1000.63|1417.32&quot;,
        &quot;B4&quot;=&gt;&quot;708.66|1000.63&quot;,
        &quot;B5&quot;=&gt;&quot;498.90|708.66&quot;,
        &quot;B6&quot;=&gt;&quot;354.33|498.90&quot;,
        &quot;B7&quot;=&gt;&quot;249.45|354.33&quot;,
        &quot;B8&quot;=&gt;&quot;175.75|249.45&quot;,
        &quot;B9&quot;=&gt;&quot;124.72|175.75&quot;,
        &quot;B10&quot;=&gt;&quot;87.87|124.72&quot;,
        &quot;C0&quot;=&gt;&quot;2599.37|3676.54&quot;,
        &quot;C1&quot;=&gt;&quot;1836.85|2599.37&quot;,
        &quot;C2&quot;=&gt;&quot;1298.27|1836.85&quot;,
        &quot;C3&quot;=&gt;&quot;918.43|1298.27&quot;,
        &quot;C4&quot;=&gt;&quot;649.13|918.43&quot;,
        &quot;C5&quot;=&gt;&quot;459.21|649.13&quot;,
        &quot;C6&quot;=&gt;&quot;323.15|459.21&quot;,
        &quot;C7&quot;=&gt;&quot;229.61|323.15&quot;,
        &quot;C8&quot;=&gt;&quot;161.57|229.61&quot;,
        &quot;C9&quot;=&gt;&quot;113.39|161.57&quot;,
        &quot;C10&quot;=&gt;&quot;79.37|113.39&quot;,
        &quot;LETTER&quot;=&gt;&quot;612.00|792.00&quot;,
        &quot;EXECUTIVE&quot;=&gt;&quot;521.86|756.00&quot;,
        &quot;LEGAL&quot;=&gt;&quot;612.00|1008.00&quot;,
        &quot;FOLIO&quot;=&gt;&quot;612.00|936.00&quot;,
        &quot;RA0&quot;=&gt;&quot;2437.80|3458.27&quot;,
        &quot;RA1&quot;=&gt;&quot;1729.13|2437.80&quot;,
        &quot;RA2&quot;=&gt;&quot;1218.90|1729.13&quot;,
        &quot;RA3&quot;=&gt;&quot;864.57|1218.90&quot;,
        &quot;RA4&quot;=&gt;&quot;609.45|864.57&quot;,
        &quot;SRA0&quot;=&gt;&quot;2551.18|3628.35&quot;,
        &quot;SRA1&quot;=&gt;&quot;1814.17|2551.18&quot;,
        &quot;SRA2&quot;=&gt;&quot;1275.59|1814.17&quot;,
        &quot;SRA3&quot;=&gt;&quot;907.09|1275.59&quot;,
        &quot;SRA4&quot;=&gt;&quot;637.80|907.09&quot;); // Paperformat </code></pre></div><p>Also have a look at line 66 in <strong>reporting/includes/class.pdf.inc</strong>.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Wed, 26 Dec 2012 10:19:22 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=14783#p14783</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=14782#p14782</link>
			<description><![CDATA[<p>is there update regarding this request?<br />as I just upgrade from sql-ledger considering for FA 2.3.13, </p><p>any manual for change cust. invoice page size to half paper A4?</p><p>thank you</p>]]></description>
			<author><![CDATA[null@example.com (ichtus)]]></author>
			<pubDate>Wed, 26 Dec 2012 09:25:08 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=14782#p14782</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11780#p11780</link>
			<description><![CDATA[<p>Sure, please send the files to contributions mailbox. I will look into them in mean time, maybe we can integrate it as an option in any of next releases.</p><p>Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Sat, 11 Feb 2012 09:28:37 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11780#p11780</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11746#p11746</link>
			<description><![CDATA[<p>regards,<br />Change things in multiple files and work with type &#039;A5&#039;.<br />I think it&#039;s important to use 1/2 page to print invoices. It is faster and cheaper for the customer (less paper).<br />If you want, I send the files to be included revize and when you want.<br />Oswall</p>]]></description>
			<author><![CDATA[null@example.com (oswall)]]></author>
			<pubDate>Tue, 07 Feb 2012 13:17:24 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11746#p11746</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11744#p11744</link>
			<description><![CDATA[<p>The New Page shift should be done automatically, but maybe something needs to be adjusted in header2.inc.<br />Remember you are on your own here. We normally do not give support about changing FA.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Tue, 07 Feb 2012 07:11:59 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11744#p11744</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11743#p11743</link>
			<description><![CDATA[<p>regards,<br />I managed to resize the page report107.php this:</p><p>$ rep = new FrontReport (_ (&#039;INVOICE&#039;), &quot;InvoiceBulk &#039;,&#039; A5 &#039;, 9&#039; L &#039;);</p><p>I use it in Landscape, to maintain a width of about 8.5 in.</p><p>How I can change the number of the invoice detail lines.<br />Can be 10 or 12 lines maximum detail so as not to leave the margins.<br />Thanks,<br />Oswall</p>]]></description>
			<author><![CDATA[null@example.com (oswall)]]></author>
			<pubDate>Mon, 06 Feb 2012 21:36:25 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11743#p11743</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11742#p11742</link>
			<description><![CDATA[<p>Hi Joe,<br />Thanks for your answer.</p><p>Since I included the code for setting &#039;A5&#039; in pdf_report.inc<br />However I have problems with the syntax to configure page type to A5 in rep107.php<br />Trying:</p><p>$ rep-&gt; user_pagesize (&#039;A5&#039;);<br />$ rep-&gt; user_pagesize = &#039;A5&#039;;<br />$ rep-&gt; SetPageSize (&#039;A5&#039;);<br />$ rep-&gt; SetPageSize = &#039;A5&#039;;</p><p>and does not work. Sorry but I know little FA API.</p>]]></description>
			<author><![CDATA[null@example.com (oswall)]]></author>
			<pubDate>Mon, 06 Feb 2012 15:33:24 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11742#p11742</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11740#p11740</link>
			<description><![CDATA[<p>FA is not supporting A5 size, but you add the following in pdf_report.inc line 98:<br /></p><div class="codebox"><pre><code>          case &#039;A5&#039;:
              // Portrait
                if ($orientation == &#039;P&#039;)
              {
                    $this-&gt;pageWidth=595;
                  $this-&gt;pageHeight=421;
                  if (!isset($margins))
                  {
                      $this-&gt;topMargin=40;
                      $this-&gt;bottomMargin=30;
                      $this-&gt;leftMargin=40;
                      $this-&gt;rightMargin=30;
                  }
              }
              // Landscape
              else
              {
                    $this-&gt;pageWidth=421;
                  $this-&gt;pageHeight=595;
                  if (!isset($margins))
                  {
                      $this-&gt;topMargin=30;
                      $this-&gt;bottomMargin=30;
                      $this-&gt;leftMargin=40;
                      $this-&gt;rightMargin=30;
                  }
              }
              break;</code></pre></div><p>And then set this &#039;A5&#039; size in all the coduments constructor. Look at rep107.php line 67:<br /></p><div class="codebox"><pre><code>        $rep = new FrontReport(_(&#039;INVOICE&#039;), &quot;InvoiceBulk&quot;, user_pagesize());

Change user_pagesize() to &quot;A5&quot;</code></pre></div><p>I cannot garuantee that this is all you need to change. If you need more adjustment, you can look into /reporting/includes/heading2.inc.</p><p>/Joe</p>]]></description>
			<author><![CDATA[null@example.com (joe)]]></author>
			<pubDate>Mon, 06 Feb 2012 13:21:31 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11740#p11740</guid>
		</item>
		<item>
			<title><![CDATA[Re: How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11738#p11738</link>
			<description><![CDATA[<p>I need to use 1/2 page for billing, saving paper.</p>]]></description>
			<author><![CDATA[null@example.com (oswall)]]></author>
			<pubDate>Mon, 06 Feb 2012 12:13:10 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11738#p11738</guid>
		</item>
		<item>
			<title><![CDATA[How print invoice in  1/2 letter size page.]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=11737#p11737</link>
			<description><![CDATA[<p>Hi,<br />You can print the invoice in half a page, either letter or A4 for example.<br />Or change the page type to 8.5 x 5.5<br />How I can change the invoice to print half a page.<br />Thanks,</p>]]></description>
			<author><![CDATA[null@example.com (oswall)]]></author>
			<pubDate>Mon, 06 Feb 2012 12:10:24 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=11737#p11737</guid>
		</item>
	</channel>
</rss>
