Re: Multi-Column Report - Add a border and line between columns
- From: "John" <John@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 9 May 2005 07:47:01 -0700
This works perfectly except I am confused on how I can make the rectangle
move down about an inch. I can't seem to figure that out. Any help would be
great.
Thanks in advance
"Duane Hookom" wrote:
> You can add code like:
> Private Sub Report_Page()
> Dim intLineCount As Integer
> Dim intColumnWidth As Integer
> Dim intReportHeight As Integer
> intReportHeight = (9 * 1440)
> intColumnWidth = 2800
> For intLineCount = 0 To 4
> Me.Line (intLineCount * intColumnWidth, 0)-Step(0, intReportHeight)
> Next
> Me.Line (0, 0)-Step(4 * intColumnWidth, intReportHeight), , B
> End Sub
>
> --
> Duane Hookom
> MS Access MVP
>
>
> "John" <John@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> news:B5BB554B-2AB9-4D1F-B6A6-E0C40537E4F3@xxxxxxxxxxxxxxxx
> > Does anyone know a way to put a border around a report and between the
> > columns of a multi-column report? I tried just adding the lines in the
> > report detail and it did not give a line on the far right side plus the
> > border was not complete if there were not enough records to fill the whole
> > page.
> >
> > Thanks in advance,
> > John
>
>
>
.
- Follow-Ups:
- Re: Multi-Column Report - Add a border and line between columns
- From: Duane Hookom
- Re: Multi-Column Report - Add a border and line between columns
- References:
- Multi-Column Report - Add a border and line between columns
- From: John
- Re: Multi-Column Report - Add a border and line between columns
- From: Duane Hookom
- Multi-Column Report - Add a border and line between columns
- Prev by Date: Report problem
- Next by Date: Re: Concatenating Fields
- Previous by thread: Re: Multi-Column Report - Add a border and line between columns
- Next by thread: Re: Multi-Column Report - Add a border and line between columns
- Index(es):
Relevant Pages
|