sample mdb showing watermark

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Please advise me a link of any sample mdb where the logo are shown in
watermark format, so that I can understand and can use the same method to get
my job done.

regards.

Irshad
 
Have you tried setting the picture property of the report? Otherwise if you
want an image on the back of each page, you might be able to create a new top
sorting and grouping level on a constant like:
=1
Display this level's header section and make it about the height of a page.
Set this sections "Repeat Section" property to Yes. Add your image to this
section. Then add code to the the On Format event of this section:

Private Sub GroupHeader0_Format(Cancel As Integer, FormatCount As Integer)
Me.MoveLayout = False
End Sub
I'm not 100% sure this will work but you might want to give it a try.
 
Back
Top