open windows picture and fax viewer

  • Thread starter Thread starter Marco
  • Start date Start date
M

Marco

Hi. is there any way to open a picture from access using windows picture and
fax viewer?

Thanks,
Marco
 
On a command button or sub, use:

Dim RetVal
RetVal = Shell("C:\WINDOWS\system32\rundll32.exe
c:\windows\system32\shimgvw.dll, ImageView_Fullscreen c:\Number.bmp", 1)

Note that after Fullscreen is the path to the picture. This is all on one
line.

Damon
 
Back
Top