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