Vertical lines in report

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

I would like to make a continious vertical line
in "Detail" section of a report. But my text boxes "can
grow" and lines cannot. What to do?
 
Mike said:
I would like to make a continious vertical line
in "Detail" section of a report. But my text boxes "can
grow" and lines cannot. What to do?

In the OnFormat event of the detail section you can use the Line method for
reports to draw lines and boxes. These are drawn using an x/y coordinate system
so it takes a bit of trial and error to get them positioned where you want them.

A particular behavior of lines drawn with this method is that they cannot extend
outside of the section where the code is run. So if you use a very large Y
coordinate for the lower end of the line it will always extend to the bottom of
the section as it changes size.
 
-----Original Message-----


In the OnFormat event of the detail section you can use the Line method for
reports to draw lines and boxes. These are drawn using an x/y coordinate system
so it takes a bit of trial and error to get them
positioned where you want them.
A particular behavior of lines drawn with this method is that they cannot extend
outside of the section where the code is run. So if you use a very large Y
coordinate for the lower end of the line it will always extend to the bottom of
the section as it changes size.


THANK YOU!
 
Back
Top