how to call the photo and faxviewer

  • Thread starter Thread starter susan
  • Start date Start date
susan brought next idea :
Hi,

How can I call the photo and faxviewer in Access2000? I'm using XP.

Thanks,

Susan

Are you falilliar with the Shell VBA command? Try:

Shell "rundll32 shimgvw.dll,ImageView_Fullscreen " & _
"FullPathAndFilenameOfThePhotoToView.Ext"

If there are spaces int the Path and Filename part you will need to
wrap that part in quotes.

The whole idea seems wrong headed to me, but this is the answer to the
specific question you asked.

You can find what is likely a better solution that will open the
application that is registered on your system to handle the file passed
here.

http://access.mvps.org/access/api/api0018.htm

Rdub
 
Back
Top