<div>Dear Joe, Glenn, Jeff</div>
<div>&nbsp;</div>
<div>I got a user try to print a .txt file using the following command. </div>
<div>(The printer is located in another town. I have no physical access to it.)</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>PRINT /D:\\MXP_NT\HPLJ4050N_TRAIN C:\rpt715.TXT</div>
<div>&nbsp;</div>
<div>He says when he printed, the print goes to A4 paper. (Note: I'm not using PCL here)</div>
<div>However when he opens the document in notepad and prints it is going to A3.</div>
<div>How can I direct the report to A3 (without using PCL).</div>
<div>&nbsp;</div>
<div>Thank you for your support.</div>
<div>Regards,</div>
<div>SYED<br><br>&nbsp;</div>
<div><span class="gmail_quote">On 12/6/05, <b class="gmail_sendername">Glenn Baxter</b> &lt;<a href="mailto:Glenn@baxterit.com.au">Glenn@baxterit.com.au</a>&gt; wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">Hi Syed,<br><br>1) Your initial request for A3 should simply be a matter of picking the<br>right stock tray; after setting landscape and an suitable font.
<br>2) Most {used guardedly} printers support PCL - I have used both Hp and<br>Toshiba.<br>3) Your method appears correct by way of insertion within Initial Heading<br>etc.<br>4) As pointed out by Jeff below; you MUST direct the report to disc; then
<br>use the Print command. Windows print subsystem WILL strip out any escape<br>sequences.<br>This may be your only problem.<br><br>I have tried the report Axiant; setting report device disc and the resulting<br>text file DOES contain the escape sequences etc.
<br>Point 4 is probably the issue.<br>Regards<br>Glenn Baxter<br>=======================<br>Baxter IT Solutions Pty Ltd<br>=======================<br><br>-----Original Message-----<br>From: Jeff Hoffman [mailto:<a href="mailto:wonicon@optusnet.com.au">
wonicon@optusnet.com.au</a>]<br>Sent: Tuesday, 6 December 2005 8:05 AM<br>To: <a href="mailto:powerh-l@lists.sowder.com">powerh-l@lists.sowder.com</a><br>Subject: Re: Printer Question - AXIANT 4GL - A3 Size Reports<br><br>
Syed<br><br>1) The only documentation I know is usually in the printer manual<br>2) If it is a HP laser it will have PCL, most other printers also support<br>PCL check the manual.<br>3) yes<br><br>Note: under windows you must print to a file and use the DOS print command
<br>to print the file, otherwise the PCL is lost. The really fun part is getting<br>the printer to work, its been mentioned before , I just do not have the<br>definition to hand.<br><br>Another technique you could use that would be more effective, is to setup
<br>standard PCL commands in text files, then use a bat file like the one below,<br>this way if you do not want to mix the fonts you do not have to change your<br>code<br><br>*********************<br>echo Printing %1 to %2 (%3)
<br>rem %1 = file to be printed, %2 = the printer , %3 = the header file<br>parameter @echo off set VPRINTFYL=%VPRPT%\PR%random% if &quot;%3&quot; == &quot;LC&quot; (set<br>VPRINTHDR=%vpdat%\vprint_LC.txt) else ^ if &quot;%3&quot; == &quot;LN&quot; (set
<br>VPRINTHDR=%vpdat%\vprint_L.txt) else ^ (set VPRINTHDR=%vpdat%\vprint_P.txt)<br>copy %VPRINTHDR% + %1 + %vpdat%\vprint_reset.txt %VPRINTFYL% print /d:%2<br>%VPRINTFYL% del %VPRINTFYL% set VPRINTFYL= set VPRINTHDR=<br>*********************
<br>This just uses 4 standard txt files, 1 each for Landscape&nbsp;&nbsp;, landscape<br>compressed , portrait &amp; reset.<br>It just defines a work file, points to a header file depending upon the 3rd<br>parameter, then copies the header file, the print file &amp; the reset file to
<br>the work file, then prints the work file.<br><br>Sorry I do not have the header files at hand I will try to get them, and<br>send the to you later. I created them by useing quiz to generate the initial<br>header, then copy this to a separate file.
<br><br>Jeff<br><br>At 11:44 PM 5/12/2005, you wrote:<br>&gt;Thank you Jeff,<br>&gt;<br>&gt;Sorry for this late mail. I'd been on vacation.<br>&gt;Thank you for your detailed explanation and sample code.<br>&gt;I have never used PCL before. That is why this many questions.
<br>&gt;<br>&gt;May I please know,<br>&gt;1. How I can get the documentation about using PCL in QUIZ and the<br>&gt;commands I should use?<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; I could not find any help in QUIZ documentation 2. How do I know<br>&gt;if the laserjet printer supports PCL?
<br>&gt;3. In your example, is the INITIAL HEADING command instructs the<br>&gt;printer to print in the defined font?<br>&gt;<br>&gt;I printed my test report with TWELVE-CPI&nbsp;&nbsp; and TEN-CPI. But there seems to<br>&gt;be no difference.
<br>&gt;What change can show me some visible change?<br>&gt;I have changed definition ESCAPE to ESCAPE1 as it is a key word.<br>&gt;RESET is also a keyword. But I didn't change it. I have listed the code<br>&gt;I used to test. (in fact it is yours).
<br>&gt;<br>&gt;I'll appreciate if you can help me in this.<br>&gt;<br>&gt;;**********************************************<br>&gt;SET REPORT DEVICE PRINTER NAME $UEV_PRINTER1<br>&gt;<br>&gt;define esc_n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int*2&nbsp;&nbsp; = 27
<br>&gt;define esc_c&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;char*2&nbsp;&nbsp;= characters(esc_n)<br>&gt;DEFINE ESCAPE1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHAR*1&nbsp;&nbsp;= esc_c[1:1]<br>&gt;DEFINE SIZE-A4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE1+ &quot;&amp;l26A&quot;<br>&gt;DEFINE LANDSCAPE-MODE CHAR*8 = ESCAPE1+ &quot;&amp;l1O&quot;
<br>&gt;DEFINE LANDSCAPE-LPP&nbsp;&nbsp;CHAR*8 = ESCAPE1+&quot;&amp;l41P&quot;<br>&gt;DEFINE LANDSCAPE-LPI&nbsp;&nbsp;CHAR*8 = ESCAPE1+&quot;&amp;l6D&quot;<br>&gt;DEFINE PORTRAIT-MODE&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;&amp;l0O&quot;<br>&gt;DEFINE PORTRAIT-LPP&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;&amp;l85P&quot;
<br>&gt;DEFINE PORTRAIT-LPI&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;&amp;l8D&quot;<br>&gt;DEFINE TWELVE-CPI&nbsp;&nbsp;&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;(s12H&quot;<br>&gt;DEFINE TEN-CPI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;(s10H&quot;<br>&gt;DEFINE POINT-SIZE-10&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;(s10V&quot;
<br>&gt;DEFINE NORMAL-PRINT&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;(s0B&quot;<br>&gt;DEFINE Compress&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE1+&quot;&amp;k2S&quot;<br>&gt;DEFINE RESET&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CHAR*2&nbsp;&nbsp;= ESCAPE1 + &quot;E&quot;<br>&gt;;------------------------------------------------------------
<br>&gt;<br>&gt;set rep nolim<br>&gt;set rep dev pri<br>&gt;set page len 85<br>&gt;set page width 132<br>&gt;SET PAGE NUMBER 1<br>&gt;<br>&gt;INITIAL HEADING&nbsp;&nbsp; &amp;<br>&gt;TAB 001 LANDSCAPE-mode LANDSCAPE-lpp LANDSCAPE-lpi TEN-CPI size-a4 &amp;
<br>&gt;SKIP PAGE<br>&gt;<br>&gt;REPORT&nbsp;&nbsp; &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP &amp;
<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;
<br>&gt;SKIP &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP &amp;<br>&gt;TAB 1 &quot;HELLO THERE&quot;&nbsp;&nbsp;&amp;<br>&gt;SKIP<br>&gt;<br>&gt;<br>&gt;FINAL FOOTING &amp;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SKIP 3 TAB 28 &quot;*** END OF REPORT ***&quot;&nbsp;&nbsp;&amp;
<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; skip tab 1 reset<br>&gt;<br>&gt;<br>&gt;BUILD Report4_PCL_TEST<br>&gt;;**********************************************************************<br>&gt;*****<br>&gt;Best Regards,<br>&gt;SYED.<br>&gt;<br>&gt;
<br>&gt;On 10/20/05, Jeff Hoffman<br>&gt;&lt;&lt;mailto:<a href="mailto:wonicon@optusnet.com.au">wonicon@optusnet.com.au</a>&gt;<a href="mailto:wonicon@optusnet.com.au">wonicon@optusnet.com.au</a>&gt; wrote:<br>&gt;Syed<br>
&gt;<br>&gt;If the generic option works and the printer are in good condition, go for<br>it.<br>&gt;<br>&gt;However I would start experimenting using laser printers as they are<br>&gt;usually available all over the network (that is the users have their
<br>&gt;own, no cost to your dept.). You could set up a default printer for<br>&gt;each user at their specific location.<br>&gt;<br>&gt;Also you can print in landscape mode at 16.6 chars per inch (small but<br>&gt;legible, you would have to find out if your users if the size is
<br>&gt;acceptable) this would give you over 182 character per line, at 12<br>&gt;chars per inch you get over 132 chars per line.<br>&gt;At&nbsp;&nbsp;8 line per inch you can get over 48 lines per page landscape.<br>&gt;<br>&gt;In this I am assuming that you laser printers support PCL.
<br>&gt;<br>&gt;Something there doing where I work at the moment is convert the print<br>&gt;files to PDL format (for use with acrobat reader) these can then be<br>&gt;e-mailed or put onto the web for distribution, but I think this is over
<br>&gt;kill, but worth looking into for the future.<br>&gt;<br>&gt;The following is an indication of how to use PCL in quiz report.<br>&gt;<br>&gt;Good luck<br>&gt;<br>&gt;Jeff<br>&gt;<br>&gt;***********************************************************************
<br>&gt;*****************************************************<br>&gt;<br>&gt;;------------------------------------------------------------<br>&gt;define esc_n&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;int*2&nbsp;&nbsp; = 27<br>&gt;define esc_c&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;char*2&nbsp;&nbsp;= characters(esc_n)
<br>&gt;DEFINE ESCAPE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHAR*1&nbsp;&nbsp;= esc_c[1:1]<br>&gt;DEFINE ESCAPE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHAR*1&nbsp;&nbsp;= esc_c[1:1]<br>&gt;DEFINE SIZE-A4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE+ &quot;&amp;l26A&quot;<br>&gt;DEFINE LANDSCAPE-MODE CHAR*8 = ESCAPE+ &quot;&amp;l1O&quot;
<br>&gt;DEFINE LANDSCAPE-LPP&nbsp;&nbsp;CHAR*8 = ESCAPE+&quot;&amp;l41P&quot;<br>&gt;DEFINE LANDSCAPE-LPI&nbsp;&nbsp;CHAR*8 = ESCAPE+&quot;&amp;l6D&quot;<br>&gt;DEFINE PORTRAIT-MODE&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;&amp;l0O&quot;<br>&gt;DEFINE PORTRAIT-LPP&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;&amp;l85P&quot;
<br>&gt;DEFINE PORTRAIT-LPI&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;&amp;l8D&quot;<br>&gt;DEFINE TWELVE-CPI&nbsp;&nbsp;&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;(s12H&quot;<br>&gt;DEFINE TEN-CPI&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;(s10H&quot;<br>&gt;DEFINE POINT-SIZE-10&nbsp;&nbsp;CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;(s10V&quot;
<br>&gt;DEFINE NORMAL-PRINT&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;(s0B&quot;<br>&gt;DEFINE Compress&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CHAR*8&nbsp;&nbsp;= ESCAPE+&quot;&amp;k2S&quot;<br>&gt;DEFINE RESET&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CHAR*2&nbsp;&nbsp;= ESCAPE + &quot;E&quot;<br>&gt;;------------------------------------------------------------
<br>&gt;<br>&gt;set rep nolim<br>&gt;set rep dev pri<br>&gt;set page len 85<br>&gt;set page width 132<br>&gt;SET PAGE NUMBER 1<br>&gt;<br>&gt;INITIAL HEADING&nbsp;&nbsp; &amp;<br>&gt;TAB 001 portrait-mode portrait-lpp portrait-lpi compress size-a4 &amp; SKIP
<br>&gt;PAGE<br>&gt;<br>&gt;FINAL FOOTING &amp;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SKIP 3 TAB 28 &quot;*** END OF REPORT ***&quot;&nbsp;&nbsp;&amp;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; skip tab 1 reset<br>&gt;***********************************************************************
<br>&gt;***<br>&gt;SET REPORT NOLIMIT<br>&gt;set rep dev pri<br>&gt;set page len 41<br>&gt;set page width 132<br>&gt;SET PAGE NUMBER 1<br>&gt;<br>&gt;INITIAL HEADING&nbsp;&nbsp; &amp;<br>&gt;TAB 001 LANDSCAPE-mode LANDSCAPE-lpp LANDSCAPE-lpi twelve-CPI size-a4 &amp;
<br>&gt;SKIP PAGE<br>&gt;<br>&gt;FINAL FOOTING &amp;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; SKIP 3 TAB 28 &quot;*** END OF REPORT ***&quot;&nbsp;&nbsp;&amp;<br>&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; skip tab 1 reset<br>&gt;<br>&gt;***********************************************************************
<br>&gt;*****************************************************<br>&gt;<br>&gt;<br>&gt;At 08:50 AM 19/10/2005, you wrote:<br>&gt; &gt;Hi Syed,<br>&gt; &gt;We have used Hp2566 and similar.<br>&gt; &gt;They need a serial attachment {or network/parallel} if they have it
<br>&gt; &gt;to any PC/Print sharer. They need to be shared from that machine,<br>&gt; &gt;thus visible<br>&gt; from<br>&gt; &gt;the server via UNC i.e. \\PSERVER1\HP2566 etc As Jeff mentioned<br>&gt; &gt;below; you will have to use the NT Print Command as per the insert
<br>&gt; &gt;below<br>&gt; &gt;<br>&gt; &gt;Rem ================================================<br>&gt; &gt;Rem&nbsp;&nbsp;Report Printer<br>&gt; &gt;Rem ================================================<br>&gt; &gt;Set My_Prn_Device=\\PServ2\HPI1
<br>&gt; &gt;Rem ================================================<br>&gt; &gt;Rem&nbsp;&nbsp;Send Output to Chosen Printer<br>&gt; &gt;Rem ================================================<br>&gt; &gt;If Exist %Ph_ZOutput%.txt Print /d:%My_Prn_Device% %Ph_ZOutput%.txt
<br>&gt; &gt;<br>&gt; &gt;or similar! This is an snippet from a server executed bat file.<br>&gt; &gt;<br>&gt; &gt;This method will honour any embedded escape sequences for compressed<br>&gt; &gt;etc that may have been used on the Hp.
<br>&gt; &gt;We use a series of escape sequences embedded into Page Headings etc<br>&gt; &gt;to address laser printers.<br>&gt; &gt;If you have any let me know and I can forward a PCL.QZS use file;<br>&gt; &gt;which I received from the list some years back.
<br>&gt; &gt;<br>&gt; &gt;In short you shouldn't have to replace your printers - unless you choose<br>to.<br>&gt; &gt;You WILL need a non Hp3000 serial printer cable to connect the Hp2566<br>&gt; &gt;etc to a PC/Print sharer. I'll check those specifications and get
<br>&gt; &gt;back to you. From emmory it's a &quot;standard&quot; serial printer cable<br>&gt; &gt;UNLIKE the Hp cable you<br>&gt; may be<br>&gt; &gt;using. This might explain your lack of output.<br>&gt; &gt;Sincerely<br>
&gt; &gt;Glenn Baxter<br>&gt; &gt;=======================<br>&gt; &gt;Baxter IT Solutions Pty Ltd<br>&gt; &gt;=======================<br>&gt; &gt;-----Original Message-----<br>&gt; &gt;From: Jeff Hoffman [mailto:<a href="mailto:wonicon@optusnet.com.au">
wonicon@optusnet.com.au</a>]<br>&gt; &gt;Sent: Wednesday, 19 October 2005 8:21 AM<br>&gt; &gt;To: &lt;mailto:<a href="mailto:powerh-l@lists.sowder.com">powerh-l@lists.sowder.com</a>&gt;<a href="mailto:powerh-l@lists.sowder.com">
powerh-l@lists.sowder.com</a><br>&gt; &gt;Subject: Re: Printer Question - AXIANT 4GL - A3 Size Reports<br>&gt; &gt;<br>&gt; &gt;Syed<br>&gt; &gt;<br>&gt; &gt;I forgot to add that if you start using PCL control characters (the
<br>&gt; &gt;temptation will be great to use some of the facilities of a laser),<br>&gt; &gt;windows printing will strip some of the control characters out, so<br>&gt; &gt;you would have to print to a file then use DOS print command, now that is
<br>fun!!!!<br>&gt; &gt;<br>&gt; &gt;Jeff<br>&gt; &gt;<br>&gt; &gt;At 08:11 AM 19/10/2005, you wrote:<br>&gt; &gt;<br>&gt; &gt; &gt;Syed<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;Laser printers I think are the best, just set the default font to
<br>&gt; &gt; &gt;courier size 10 or 11 depending upon what will fit your largest<br>&gt; &gt; &gt;report. The main problem is volume of printing required at each<br>&gt; &gt; &gt;print station, the<br>&gt; cheapies<br>&gt; &gt; &gt;only support low volume work, if you get one that has a 2 to 3,000
<br>&gt; &gt; &gt;sheet feeder should suffice. You could most probable replace a few<br>&gt; &gt; &gt;of the old dot matix printers with one laser but do not forget<br>&gt; &gt; &gt;redundancy, you<br>&gt; should<br>&gt; &gt; &gt;allow for the fact that they do break down.
<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;I personally would recommend a HP laser (has the best PCL support),<br>&gt; &gt; &gt;but I have used a Lexmark lasers as it had a 4,000 sheet (A4)<br>&gt; &gt; &gt;feeded, I could load the paper at the beginning of the day and just
<br>forget about it.<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;Jeff<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;At 05:07 AM 19/10/2005, you wrote:<br>&gt; &gt; &gt;<br>&gt; &gt; &gt;&gt;Dear Gurus,<br>&gt; &gt; &gt;&gt;Quick Intro: I've migrated a PH/MPEIX application to
<br>&gt; &gt; &gt;&gt;AXIANT4GL/WINDOWS (Thin Client).<br>&gt; &gt; &gt;&gt;<br>&gt; &gt; &gt;&gt;The printers currently in use in MPEIX are<br>&gt; &gt; &gt;&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(1) HP 2566 C<br>&gt; &gt; &gt;&gt;and&nbsp;&nbsp;(2) HP 2563 A.
<br>&gt; &gt; &gt;&gt;<br>&gt; &gt; &gt;&gt;These dot matrix printers doesn't seem to work with Windows. The<br>&gt; &gt; &gt;&gt;infrastructure guys say that no Windows XP drivers are available<br>&gt; &gt; &gt;&gt;for these printers.
<br>&gt; &gt; &gt;&gt;<br>&gt; &gt; &gt;&gt;My problem is, these printers are printing A3 size reports.<br>&gt; &gt; &gt;&gt;Can anyone help me in knowing the best replacement for these<br>&gt; &gt; &gt;&gt;printers in Windows XP/2003 to print A3 reports.
<br>&gt; &gt; &gt;&gt;I don't have the option of reformatting the reports to A4 size.<br>&gt; &gt; &gt;&gt;<br>&gt; &gt; &gt;&gt;I'd appreciate your efforts to help me out of this issue.<br>&gt; &gt; &gt;&gt;<br>&gt; &gt; &gt;&gt;Thanks and Regards,
<br>&gt; &gt; &gt;&gt;SYED<br>&gt; &gt; &gt;&gt;<br>&gt; &gt; &gt;&gt;<br>&gt; &gt; &gt;&gt;--<br><br>--<br>= = = = = = = = = = = = = = = = = = = = = = = = = = = = Mailing list:<br><a href="mailto:powerh-l@lists.sowder.com">
powerh-l@lists.sowder.com</a><br>Subscribe: &quot;subscribe&quot; in message body to <a href="mailto:powerh-l-request@lists.sowder.com">powerh-l-request@lists.sowder.com</a><br>Unsubscribe: &quot;unsubscribe &amp;lt;password&amp;gt;&quot; in message body to
<br><a href="mailto:powerh-l-request@lists.sowder.com">powerh-l-request@lists.sowder.com</a><br><a href="http://lists.sowder.com/mailman/listinfo/powerh-l">http://lists.sowder.com/mailman/listinfo/powerh-l</a><br>This list is closed, thus to post to the list you must be a subscriber.
<br>--<br>= = = = = = = = = = = = = = = = = = = = = = = = = = = =<br>Mailing list: <a href="mailto:powerh-l@lists.sowder.com">powerh-l@lists.sowder.com</a><br>Subscribe: &quot;subscribe&quot; in message body to <a href="mailto:powerh-l-request@lists.sowder.com">
powerh-l-request@lists.sowder.com</a><br>Unsubscribe: &quot;unsubscribe &amp;lt;password&amp;gt;&quot; in message body to <a href="mailto:powerh-l-request@lists.sowder.com">powerh-l-request@lists.sowder.com</a><br><a href="http://lists.sowder.com/mailman/listinfo/powerh-l">
http://lists.sowder.com/mailman/listinfo/powerh-l</a><br>This list is closed, thus to post to the list you must be a subscriber.<br></blockquote></div><br>