Page Label

G

Guest

Hi,

Does anyone know how to add a page label (a label on the right side of every
page). In MS Word, I can add the label (a picture) as part of footer, i.e. by
dragging the picture in textbox to the right side of the page but still part
of a footer.

In Access I can't add it into the details section as I have a grouping and I
can't fix the the position. I also can't add it into the footer as it will
consume space (no text can be added to the left of the label). Does anyone
have an idea how to resolve this?

Thank you,
Chris
 
G

Guest

Hi Allen,

Thank for the reply. I tried to use the Picture property, but the
positioning of the picture at certain location (just above the page number)
cannot be done . I also only want to label in the odd pages, which also not
possible...

Regards,
Chris
 
A

Allen Browne

There is a Page event that lets you place text and lines on a page, but I've
never tried it for images.

Or perhaps someone else has a suggestion.
 
G

Guest

Hi Allen,

Could you guide me how to place the text on the page. Most of the sample
codes deal with the line in the page event. Should I create the text box in
the design form and just reposition it in page event?

Regards,
Chris
 
A

Allen Browne

Basic example:

Private Sub Report_Page()
Me.CurrentX = 1440
Me.CurrentY = 1440
Me.Print "G'day"
End Sub
 

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