Watermark on an Access Report

P

Pete Dutton

Is there a way to add a watermark or semi transparent
image as a background to an Access report ?

Thanks in advance
 
K

Kalen Marra

You can set the "Picture" property for the report - just point it to an
image file.
I do this for a "sample" watermark if the user is running a demo license.

On open of the report:

Private Sub Report_Open(Cancel As Integer)
If (varLicenseType Like "*Demo*") Then
Me.Picture = "Sample.jpg"
End If
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