Focal Point
[SOLVED] HFREEZE

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/5217069926

April 04, 2013, 12:23 PM
expertomad
[SOLVED] HFREEZE
Hello I wold like put scroll the report the behind left no the behind righ this is possible ?

Example :

TABLE FILE MOVIES
PRINT *
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
SIZE=9,
HFREEZE=ON,
SCROLLHEIGHT=5.000000,
$
TYPE=TITLE,
STYLE=BOLD,
$
TYPE=TABHEADING,
SIZE=12,
STYLE=BOLD,
$
TYPE=TABHEADING,
LINE=1,
JUSTIFY=CENTER,
$
TYPE=HEADING,
SIZE=12,
STYLE=BOLD,
$
END

Thank you forr all.

This message has been edited. Last edited by: <Kathryn Henning>,
April 04, 2013, 01:41 PM
Mighty Max
Did a couple of Google searches. Not really a WebFocus issue. Browser language setting controls this.
Can be manipulated using css. However column order is now backwards. You will need to adjust the print order.
http://www.w3schools.com/cssref/pr_text_direction.asp
  
TABLE FILE MOVIES
PRINT *
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
SIZE=9,
HFREEZE=ON,
SCROLLHEIGHT=5.000000,
$
TYPE=TITLE,
STYLE=BOLD,
$
TYPE=TABHEADING,
SIZE=12,
STYLE=BOLD,
$
TYPE=TABHEADING,
LINE=1,
JUSTIFY=CENTER,
$
TYPE=HEADING,
SIZE=12,
STYLE=BOLD,
$
END

-HTMLFORM BEGIN
<style>
div { direction:rtl !important; }
</style>
-HTMLFORM END



WebFOCUS 8.1.05M Unix Self-Service/MRE/Report Caster - Outputs Excel, PDF, HTML, Flat Files
April 04, 2013, 02:46 PM
Danny-SRL
Or this:
  
SET LAYOUTRTL=ON
TABLE FILE MOVIES
PRINT *
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='ARIAL',
SIZE=9,
HFREEZE=ON,
SCROLLHEIGHT=5.000000,
$
TYPE=TITLE,
STYLE=BOLD,
$
TYPE=TABHEADING,
SIZE=12,
STYLE=BOLD,
$
TYPE=TABHEADING,
LINE=1,
JUSTIFY=CENTER,
$
TYPE=HEADING,
SIZE=12,
STYLE=BOLD,
$
-REPEAT #REV FOR &I FROM 1 TO 50;
-SET &J=51-&I;
TYPE=REPORT, COLUMN=P&I, SEQUENCE=&J, JUSTIFY=LEFT, $
-#REV
END



Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

April 08, 2013, 03:27 AM
expertomad
Thanks for all.