S susan May 20, 2012 #1 Hi, How can I call the photo and faxviewer in Access2000? I'm using XP. Thanks, Susan
R Ron Weiner May 20, 2012 #2 susan brought next idea : Hi, How can I call the photo and faxviewer in Access2000? I'm using XP. Thanks, Susan Click to expand... 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
susan brought next idea : Hi, How can I call the photo and faxviewer in Access2000? I'm using XP. Thanks, Susan Click to expand... 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