Multiple fields in printing

Post Reply
Ehab Samir Aziz
Posts: 334
Joined: Fri Oct 14, 2005 1:54 pm

Multiple fields in printing

Post by Ehab Samir Aziz »

How can I print the whole fields of DBf in preview.dll put all fields simulataneoulsy in separate pages ?
User avatar
Roger Seiler
Posts: 223
Joined: Thu Dec 01, 2005 3:34 pm
Location: Nyack, New York, USA
Contact:

Post by Roger Seiler »

Could you re-phrase your question, please? I can't understand your question as presently stated, but would like to help if possible.
User avatar
E. Bartzokas
Posts: 114
Joined: Tue Feb 14, 2006 8:13 am
Location: Corinth, Greece

Post by E. Bartzokas »

Roger Seiler wrote:Could you re-phrase your question, please? I can't understand your question as presently stated, but would like to help if possible.
I guess our friend wants to create a printout with Preview, but he does not define how he wants the fields to be printed.
I guess a small rephrasing wouldn't hurt anyone... ;-)
Ehab Samir Aziz
Posts: 334
Joined: Fri Oct 14, 2005 1:54 pm

Post by Ehab Samir Aziz »

I want to overcome the problem of ;
Report width is greater than page width ?
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Post by James Bott »

I believe what he wants is to print as many fields (in order) as will fit within the width of a portrait page in one report, then pick up on the next field on a second report, etc.

This will require calculating the width of each field based on the field width and the width of a dummy string of characters (usually uppercase B's) of the same length as the field spec. You use uppercase B's because nothing actually in the field will be wider than that. Also the printable width of the printer will have to be considered. I don't know that anyone has done this, but I am sure it can be done.

I did something similar a long time ago, but all the fields were the same width so it was easy.

James
Ehab Samir Aziz
Posts: 334
Joined: Fri Oct 14, 2005 1:54 pm

Post by Ehab Samir Aziz »

Can you help me in coding please ?
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Post by James Bott »

Ehab,

Try these:

oReport:oDevice:nHorzSize() // page width

oReport:oDevice:getTextSize( cText, oFont )

James
Post Reply