Drawing an outline around the report

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello everybody
how can i draw a borderline around my report? I want the border to be fixed
and not to resize with the data
thanks in advance
Cheers
 
Omar said:
Hello everybody
how can i draw a borderline around my report? I want the border to be fixed
and not to resize with the data
thanks in advance
Cheers

Use the Report's Print method in the Page event. With that you can draw lines
and boxes using x-y coordinates to establish the upper left and lower right
boundaries of a rectangle.
 
Thanks mate
This was really useful

Rick Brandt said:
Use the Report's Print method in the Page event. With that you can draw lines
and boxes using x-y coordinates to establish the upper left and lower right
boundaries of a rectangle.
 
Back
Top