Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

GRID=ON

Status
Not open for further replies.

LeonelSanchezJr

Programmer
Joined
Jan 26, 2001
Messages
522
Location
US
I need to have my GRID turned on in order for my fields to align perfectly in my report, however, I do not want the grid to be visible. The format is HTML output.

Can I change the color of the GRID to white?
Or, can I make the GRID invisible?

Thanks,

Leo ;-)
 
HI :)
1. why don't you turn the grid off, if you dont want it visible?

this is what i use: and i love it. it makes a thin black line instead of the ugly white one. :)

Code:
ON TABLE SET STYLE *
TYPE=REPORT,  SQUEEZE=ON, GRID=ON, WRAP=ON,  FONT='ARIAL', SIZE=9, ORIENTATION=LANDSCAPE,$
TYPE=DATA, BORDER=LIGHT,$
END STYLE
 
here's what i do, and i don't have to turn on htmlcss to do it.
ON TABLE HOLD AS MYTAB FORMAT HTMTABLE
END
-RUN
-HTMLFORM BEGIN
<HTML>
<STYLE>
TABLE {border-collapse:collapse}
</STYLE>
!IBI.FIL.MYTAB;
</HTML>

-HTMLFORM END

-SUSANNAH
 
You could use borders and set the border color to any that you wish.
 
Leo,

Read your WF manual. Got to do your homework or just ask Jay
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top