Focal Point
[SOLVED] Backcolor Allignment Question

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

February 23, 2012, 10:08 AM
ColdWhiteMilk
[SOLVED] Backcolor Allignment Question
The code below works for giving me a page header that has a background color inside the grid. When I run this independently (as its own query), the background color goes all the way to the edges of the grid. When I add the next section to the page, the background color no longer goes all the way to the edges of the grid.

I'm guessing it has something to do with the report/header width, but does anyone know what could be causing the backcolor to not fill the entire grid square?


SET ASNAMES = ON
SET DTSTANDARD = STANDARD
SET HTMLCSS=ON
SET SHOWBLANKS = ON

FILEDEF OUTPUT1 DISK REPORT1.DOC
SET COMPONENT = 'report1'

DEFINE FILE CAR
SECTIONDATA WITH COUNTRY/A1= '';
END

TABLE FILE CAR
BY COUNTRY NOPRINT

HEADING
"Attachment 2"
"Contract List"

ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLE *
UNITS=IN, ORIENTATION=PORTRAIT, TOPMARGIN=0,LEFTMARGIN=0,RIGHTMARGIN=0,$
TYPE=REPORT,FONT='ARIAL', GRID=ON, WIDTH=6.6,$

TYPE=HEADING,LINE=1,JUSTIFY=CENTER,STYLE=BOLD,SIZE=12,BACKCOLOR=RGB(210 210 210), WIDTH=6.600,$
TYPE=HEADING,LINE=2,JUSTIFY=CENTER,STYLE=BOLD,SIZE=12,BACKCOLOR=RGB(210 210 210), WIDTH=6.600,$

ENDSTYLE

ON TABLE HOLD AS REPORT1 FORMAT HTMTABLE
END
-RUN

SET HTMLFORMTYPE=DOC
-HTMLFORM BEGIN
!IBI.FIL.REPORT1;
<P STYLE="PAGE-BREAK-BEFORE: NEVER">
-HTMLFORM END 

-EXIT

This message has been edited. Last edited by: Kerry,


Production - 7.6.4
Sandbox - 7.6.4
February 23, 2012, 03:36 PM
Waz
Seems to work for me,

Could it be the version of Word ?

I was using Word 2003


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

February 24, 2012, 02:06 PM
ColdWhiteMilk
It works for me too.

I think tha the problem is because in my acual code, there is a section immediately above this that has the GRID turned off, and then this section has the GRID on.


Production - 7.6.4
Sandbox - 7.6.4
February 26, 2012, 03:49 PM
Waz
Are you able to add the extra section in the sample code ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!