Re: Multi-Column Report - Add a border and line between columns
- From: "Duane Hookom" <duanehookom@xxxxxxxxxxxxxxxxxx>
- Date: Thu, 5 May 2005 21:36:51 -0500
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:
- References:
- Prev by Date: Re: Daily Occurrance Report
- Next by Date: Re: Sort on Subtotals in an Access Report
- Previous by thread: 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
|