vertical lines on report header

G

Guest

I am using the on page event of the report to print vertical lines but I need
them to be a different size on the report header page

Me.ScaleMode = 1
Me.ForeColor = RGB(0, 0, 0)

Me.Line (1.01 * 1440, 4.22 * 1440)-(1.01 * 1440, 8.28 * 1440)

any suggestions please
 
D

Duane Hookom

You can test for the first page in your code by adding a text box bound to
[Page] in your report and then using code like:

If [Page] = 1 then 'determine if first page
'code for page with report header
Else
'code for remaining pages
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top