Yes, it's possible as the demo shows.. but it sounds like you might need to enlist someone who knows Access development to get it to work for you..
Hold down the shift key while opening the database, this will prevent "autoexec" events from firing and allows access to the database window.
The code John Washenberger put in the report is -
Code:
Option Compare Database
Private Sub Report_Open(Cancel As Integer)
'Display the Map as the report's picture
Me.Picture = GetAppDir & "map.gif"
End Sub
The forms have a lot more code.
good luck!
Eric