Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Report_Page()
Dim dblVert As Double [highlight #FCE94F]'where down the page[/highlight]
dblVert = 1440 * 5 [highlight #FCE94F]'5 inches from top margin. change as needed[/highlight]
[highlight #FCE94F]'draw lines[/highlight]
Me.Line (0, 1440 * 5)-Step(200, 0)
Me.Line (Me.Width - 200, 1440 * 5)-Step(200, 0)
End Sub