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 SkipVought 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
Jan 26, 2001
522
0
0
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top