Watermark on an Access Report

  • Thread starter Thread starter Pete Dutton
  • Start date Start date
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
 
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
 
Back
Top