FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Possible Footerlines with different orientation ?
Posts: 4043
Joined: Wed Dec 19, 2007 06:40 PM
Possible Footerlines with different orientation ?
Posted: Mon Nov 05, 2012 11:38 PM

Hello,

is it possible, to define multi-footer-lines
with different orientation ?

FOOTER "This is the footer line 1" , ; // 1. Line needed left
"This is the footer line 2", ; 2. Line needed left
"This is the footer Line 3" RIGHT ; // 3. Line needed right
PREVIEW

Best Regards
Uwe :?:

Since 1995 ( the first release of FW 1.9 )

i work with FW.

If you have any questions about special functions, maybe i can help.
Posts: 723
Joined: Tue Sep 04, 2007 08:45 AM
Re: Possible Footerlines with different orientation ?
Posted: Tue Nov 06, 2012 12:32 AM
Uwe:

My friend, here's the solution:
Code (fw): Select all Collapse
oRep:oFooter:aPad[1] := 1  //LEFT
oRep:oFooter:aPad[2] := 1 // LEFT
oRep:oFooter:aPad[3] := 2 // RIGHT

or

FOOTER "This is the footer line 1" , ; // 1. Line needed left
"This is the footer line 2", ; 2. Line needed left
"This is the footer Line 3" LEFT ; // 3. Line needed right
PREVIEW
oRep:oFooter:aPad[3] := 2 // RIGHT

Continue the discussion