Focal Point
removing extra blank line in the report

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

May 06, 2004, 06:43 PM
<Vipul>
removing extra blank line in the report
My report when I use HTMLFORM kinds of come up double spaces if I donot use HTMLFORM is displays single spaces. I need to display single space and also need htmlform.

Any ideas where I may be going wrong?

Thanks,

Vipul Gupta
May 06, 2004, 07:03 PM
<WFUser>
It could be your form that has spaces. Check the page properties on the page and make the top margin 0.
May 06, 2004, 07:20 PM
<Vipul>
I am talking of line spacing like:
XYZ

YXY

I want it like
XYZ
YXY

My stylesheet report param is:
UNITS=PTS, PAGESIZE='Letter', LEFTMARGIN=0.250000, RIGHTMARGIN=0.250000,
TOPMARGIN=0.0000000, BOTTOMMARGIN=0.000000, SQUEEZE=&SQZ,
ORIENTATION=LANDSCAPE, GRID=OFF, $

Vipul
May 06, 2004, 07:41 PM
<Pietro De Santis>
Put the GRID on to see if your report rows are being double spaced.

You don't have SKIP-LINE anywhere in your program, do you?
May 06, 2004, 07:47 PM
<WFUser>
ok, I see. Doesn't make sense. No reason why the html would be different. Is this an HTML page you created that you're bringing the report into? If so try

ON TABLE HOLD AS TESTFORM FORMAT HTMLFORM
END
-RUN
-HTMLFORM TESTFORM

If that looks right then its something in your other page.
May 06, 2004, 08:06 PM
<Vipul>
Got it man, How stupid I am.

There is this defined in my htmlform
td {border: 0px; padding: 4px;}

Thanks Guys,

Vipul