View Single Post

  #8 (permalink)  
Old 01-24-2005
Eric Frost's Avatar
Eric Frost Eric Frost is offline
Senior Member
Black Belt
 
Join Date: Jul 1992
Posts: 2,536
Blog Entries: 1
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
__________________
~ Now taking orders for MapPoint 2009 ~
~
~ Upgrade to MapForums Plus membership ~
Reply With Quote