| Author | Topic: Setting Page Length to 3-2/3 inches |
---|
| Carmelo Rioflorido | Setting Page Length to 3-2/3 inches
on Tue, 28 Jun 2005 00:15:57 -0700Hi Everyone,
I have been trying to set up a printing routine on a 8-1/2" x 11" letter
size paper to print on a page length of 3-2/3 inches so that I can print
three invoices on the whole letter size paper.
I tried Top Down and Xbase++ syntax but I cannot get the right combinations
to make the routine work.
Please help.
Thanks,
Carmelo Rioflorido
Chula Vista, CA 91913 |
| James Loughner | Re: Setting Page Length to 3-2/3 inches
on Tue, 28 Jun 2005 11:21:22 -0400You must print the invoice one after another without a page eject.
Windows printing is page oriented not line oriented as in Clipper.
To do this add a vertical offset value to your print routine and only
issue an eject after you have printed three invoices or you are done.
Jim
Carmelo Rioflorido wrote:
> Hi Everyone,
>
> I have been trying to set up a printing routine on a 8-1/2" x 11" letter
> size paper to print on a page length of 3-2/3 inches so that I can print
> three invoices on the whole letter size paper.
>
> I tried Top Down and Xbase++ syntax but I cannot get the right combinations
> to make the routine work.
>
> Please help.
>
> Thanks,
> Carmelo Rioflorido
> Chula Vista, CA 91913
>
> |
| Carmelo Rioflorido | Re: Setting Page Length to 3-2/3 inches
on Thu, 30 Jun 2005 17:40:28 -0700James,
Thank you for the information.
I was able to print on a line oriented way by using the hints from Top-Down.
First, I print to file using the op:lAscii = .t. and at the end, I print the
file using "run type xxx.txt > prn".
Carmelo Rioflorido
"James Loughner" <jwrl@charter.net> wrote in message
news:Wp6VMV$eFHA.6152@S15147418...
> You must print the invoice one after another without a page eject.
> Windows printing is page oriented not line oriented as in Clipper.
>
> To do this add a vertical offset value to your print routine and only
> issue an eject after you have printed three invoices or you are done.
>
> Jim
>
> Carmelo Rioflorido wrote:
>
> > Hi Everyone,
> >
> > I have been trying to set up a printing routine on a 8-1/2" x 11" letter
> > size paper to print on a page length of 3-2/3 inches so that I can print
> > three invoices on the whole letter size paper.
> >
> > I tried Top Down and Xbase++ syntax but I cannot get the right
combinations
> > to make the routine work.
> >
> > Please help.
> >
> > Thanks,
> > Carmelo Rioflorido
> > Chula Vista, CA 91913
> >
> > |
| Mark Carew | Re: Setting Page Length to 3-2/3 inches
on Tue, 19 Jul 2005 11:11:15 +1000Hi Carmelo,
If you are using xp. go to
control panel -> printers -> File -> Server Properties ->Forms. Check
Box (Create New Forms) and then give your new form the required dimensions
and a name. Then in topdown just choose that form to print on your chosen
printer
Regards
Mark |
| Carmelo Rioflorido | Re: Setting Page Length to 3-2/3 inches
on Fri, 22 Jul 2005 19:15:24 -0700 |